Home
last modified time | relevance | path

Searched refs:expires (Results 1 – 25 of 41) sorted by relevance

12

/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_headers_filter_module.c47 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 Dngx_http_secure_link_module.c22 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 Dngx_http_userid_filter_module.c32 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 Dlazyfree.c57 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 Dexpire.c167 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 Ddb.c238 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 Dredis-check-rdb.c44 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 Devict.c492 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 Dserver.c749 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 Ddefrag.c774 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 Dvchi_bsd.c84 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 Dvchi_bsd.h194 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 Drtc-meson-vrtc.txt14 program an always-on timer before going sleep. When the timer expires,
/f-stack/freebsd/contrib/device-tree/Bindings/power/supply/
H A Dmaxim,ds2760.txt21 this time expires, the values are read again from
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dtimer.rst108 * 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 DCHANGES.ru435 *) Исправление: директива "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 Dsamsung,exynos4210-mct.yaml17 down-counters and generate an interrupt when the counter expires. There is
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_upstream.h268 ngx_table_elt_t *expires; member
H A Dngx_http_request.h271 ngx_table_elt_t *expires; member
H A Dngx_http_header_filter_module.c147 { ngx_string("Expires"), offsetof(ngx_http_headers_out_t, expires) },
/f-stack/app/redis-5.0.5/tests/unit/
H A Dexpire.tcl91 test {PEXPIRE/PSETEX/PEXPIREAT can set sub-second expires} {
/f-stack/dpdk/doc/guides/prog_guide/
H A Devent_timer_adapter.rst46 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 Dspl-condvar.c241 timer->expires = expire_time; in spl_io_schedule_timeout()
H A Dspl-taskq.c612 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 Dkeystone-navigator-qmss.txt70 becomes full or a programmed time period expires, the

12