| /f-stack/app/nginx-1.16.1/src/http/modules/ |
| H A D | ngx_http_headers_filter_module.c | 47 ngx_http_expires_t expires; member 179 if (conf->expires == NGX_HTTP_EXPIRES_OFF in ngx_http_headers_filter() 334 ngx_http_expires_t expires; in ngx_http_set_expires() local 336 expires = conf->expires; in ngx_http_set_expires() 356 e = r->headers_out.expires; in ngx_http_set_expires() 365 r->headers_out.expires = e; in ngx_http_set_expires() 414 if (expires == NGX_HTTP_EXPIRES_MAX) { in ngx_http_set_expires() 504 *expires = NGX_HTTP_EXPIRES_DAILY; in ngx_http_parse_expires() 527 if (*expires == NGX_HTTP_EXPIRES_DAILY in ngx_http_parse_expires() 674 conf->expires = NGX_HTTP_EXPIRES_UNSET; in ngx_http_headers_create_conf() [all …]
|
| H A D | ngx_http_secure_link_module.c | 22 ngx_str_t expires; member 106 time_t expires; in ngx_http_secure_link_variable() local 132 expires = 0; in ngx_http_secure_link_variable() 137 expires = ngx_atotm(p, last - p); in ngx_http_secure_link_variable() 138 if (expires <= 0) { in ngx_http_secure_link_variable() 149 ctx->expires.len = last - p; in ngx_http_secure_link_variable() 150 ctx->expires.data = p; in ngx_http_secure_link_variable() 182 v->data = (u_char *) ((expires && expires < ngx_time()) ? "0" : "1"); in ngx_http_secure_link_variable() 278 v->len = ctx->expires.len; in ngx_http_secure_link_expires_variable() 282 v->data = ctx->expires.data; in ngx_http_secure_link_expires_variable()
|
| H A D | ngx_http_userid_filter_module.c | 32 time_t expires; member 378 if (conf->expires) { in ngx_http_userid_set_uid() 379 len += sizeof(expires) - 1 + 2; in ngx_http_userid_set_uid() 414 p = ngx_cpymem(p, expires, sizeof(expires) - 1); in ngx_http_userid_set_uid() 416 } else if (conf->expires) { in ngx_http_userid_set_uid() 669 conf->expires = NGX_CONF_UNSET; in ngx_http_userid_create_conf() 691 ngx_conf_merge_sec_value(conf->expires, prev->expires, 0); in ngx_http_userid_merge_conf() 771 if (ucf->expires != NGX_CONF_UNSET) { in ngx_http_userid_expires() 783 ucf->expires = 0; in ngx_http_userid_expires() 787 ucf->expires = ngx_parse_time(&value[1], 1); in ngx_http_userid_expires() [all …]
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | lazyfree.c | 57 if (dictSize(db->expires) > 0) dictDelete(db->expires,key->ptr); in dbAsyncDelete() 108 dict *oldht1 = db->dict, *oldht2 = db->expires; in emptyDbAsync() 110 db->expires = dictCreate(&keyptrDictType,NULL); in emptyDbAsync()
|
| H A D | expire.c | 167 if ((num = dictSize(db->expires)) == 0) { in activeExpireCycle() 171 slots = dictSlots(db->expires); in activeExpireCycle() 193 if ((de = dictGetRandomKey(db->expires)) == NULL) break; in activeExpireCycle() 303 dictEntry *expire = dictFind(db->expires,keyname); in expireSlaveKeys()
|
| H A D | db.c | 238 int allvolatile = dictSize(db->dict) == dictSize(db->expires); in dbRandomKey() 249 if (dictFind(db->expires,key)) { in dbRandomKey() 274 if (dictSize(db->expires) > 0) dictDelete(db->expires,key->ptr); in dbSyncDelete() 365 dictEmpty(server.db[j].expires,callback); in emptyDb() 1011 db1->expires = db2->expires; in dbSwapDatabases() 1015 db2->expires = aux.expires; in dbSwapDatabases() 1069 return dictDelete(db->expires,key->ptr) == DICT_OK; in removeExpire() 1082 de = dictAddOrFind(db->expires,dictGetKey(kde)); in setExpire() 1096 if (dictSize(db->expires) == 0 || in getExpire() 1097 (de = dictFind(db->expires,key->ptr)) == NULL) return -1; in getExpire()
|
| H A D | redis-check-rdb.c | 44 unsigned long expires; /* Number of keys with an expire. */ member 94 printf("[info] %lu expires\n", rdbstate.expires); in rdbShowGenericInfo() 292 if (expiretime != -1) rdbstate.expires++; in redis_check_rdb()
|
| H A D | evict.c | 492 db->dict : db->expires; in freeMemoryIfNeeded() 509 de = dictFind(server.db[pool[k].dbid].expires, in freeMemoryIfNeeded() 542 db->dict : db->expires; in freeMemoryIfNeeded()
|
| H A D | server.c | 749 if (htNeedsResize(server.db[dbid].expires)) in tryResizeHashTables() 750 dictResize(server.db[dbid].expires); in tryResizeHashTables() 767 if (dictIsRehashing(server.db[dbid].expires)) { in incrementallyRehash() 768 dictRehashMilliseconds(server.db[dbid].expires,1); in incrementallyRehash() 1193 vkeys = dictSize(server.db[j].expires); in serverCron() 2086 server.db[j].expires = dictCreate(&keyptrDictType,NULL); in initServer() 3672 vkeys = dictSize(server.db[j].expires); in genRedisInfoString()
|
| H A D | defrag.c | 774 if (dictSize(db->expires)) { in defragKey() 779 … replaceSateliteDictKeyPtrAndOrDefragDictEntry(db->expires, keysds, newsds, hash, &defragged); in defragKey()
|
| /f-stack/freebsd/contrib/vchiq/interface/compat/ |
| H A D | vchi_bsd.c | 84 t->expires = 0; in vchiq_init_timer() 100 vchiq_mod_timer(struct timer_list *t, unsigned long expires) in vchiq_mod_timer() argument 103 callout_reset(&t->callout, expires - jiffies, run_timer, t); in vchiq_mod_timer() 110 vchiq_mod_timer(t, t->expires); in vchiq_add_timer()
|
| H A D | vchi_bsd.h | 194 unsigned long expires; member 201 void vchiq_mod_timer(struct timer_list *t, unsigned long expires);
|
| /f-stack/freebsd/contrib/device-tree/Bindings/rtc/ |
| H A D | rtc-meson-vrtc.txt | 14 program an always-on timer before going sleep. When the timer expires,
|
| /f-stack/freebsd/contrib/device-tree/Bindings/power/supply/ |
| H A D | maxim,ds2760.txt | 21 this time expires, the values are read again from
|
| /f-stack/dpdk/doc/guides/sample_app_ug/ |
| H A D | timer.rst | 108 * The first timer (timer0) is loaded on the main lcore and expires every second. 113 … The SINGLE flag means that the timer expires only once and must be reloaded manually if required.
|
| /f-stack/app/nginx-1.16.1/ |
| H A D | CHANGES.ru | 435 *) Исправление: директива "expires modified" и обработка строки If-Range 1422 *) Добавление: директива expires поддерживает переменные. 2760 неверное значение при использовании директивы expires. 2871 *) Исправление: в директиве "expires @time". 3694 *) Исправление: если директива "expires modified" выставляла дату в 5015 *) Добавление: директива expires поддерживает суточное время. 5178 *) Добавление: директива expires поддерживает флаг modified. 6437 *) Добавление: директива expires поддерживает параметр max. 7351 *) Исправление: директива expires не удаляла уже установленную строку 7635 expires происходил segmentation fault или рабочий процесс мог [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/timer/ |
| H A D | samsung,exynos4210-mct.yaml | 17 down-counters and generate an interrupt when the counter expires. There is
|
| /f-stack/app/nginx-1.16.1/src/http/ |
| H A D | ngx_http_upstream.h | 268 ngx_table_elt_t *expires; member
|
| H A D | ngx_http_request.h | 271 ngx_table_elt_t *expires; member
|
| H A D | ngx_http_header_filter_module.c | 147 { ngx_string("Expires"), offsetof(ngx_http_headers_out_t, expires) },
|
| /f-stack/app/redis-5.0.5/tests/unit/ |
| H A D | expire.tcl | 91 test {PEXPIRE/PSETEX/PEXPIREAT can set sub-second expires} {
|
| /f-stack/dpdk/doc/guides/prog_guide/ |
| H A D | event_timer_adapter.rst | 46 timer expires, and the event device uses the attributes below when scheduling 230 Once an event timer expires, the application may free it or rearm it as
|
| /f-stack/freebsd/contrib/openzfs/module/os/linux/spl/ |
| H A D | spl-condvar.c | 241 timer->expires = expire_time; in spl_io_schedule_timeout()
|
| H A D | spl-taskq.c | 612 t->tqent_timer.expires = 0; in taskq_dispatch() 663 t->tqent_timer.expires = (unsigned long)expire_time; in taskq_dispatch_delay()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/soc/ti/ |
| H A D | keystone-navigator-qmss.txt | 70 becomes full or a programmed time period expires, the
|