Home
last modified time | relevance | path

Searched full:cache (Results 1 – 25 of 61) sorted by relevance

123

/civetweb-2.7.6/
DCMakeLists.txt44 set(CIVETWEB_VERSION "1.11.0" CACHE STRING "The version of the civetweb library")
63 set(CIVETWEB_THREAD_STACK_SIZE 102400 CACHE STRING
65 set_property(CACHE CIVETWEB_THREAD_STACK_SIZE PROPERTY VALUE ${CIVETWEB_THREAD_STACK_SIZE})
148 set(CIVETWEB_LUA_VERSION 5.2.4 CACHE STRING
150 set_property(CACHE CIVETWEB_LUA_VERSION PROPERTY VALUE ${CIVETWEB_LUA_VERSION})
155 set(CIVETWEB_LUA_MD5_HASH 913fdb32207046b273fdb17aad70be13 CACHE STRING
157 set_property(CACHE CIVETWEB_LUA_MD5_HASH PROPERTY VALUE ${CIVETWEB_LUA_MD5_HASH})
162 set(CIVETWEB_LUA_FILESYSTEM_VERSION 1.6.3 CACHE STRING
164 …set_property(CACHE CIVETWEB_LUA_FILESYSTEM_VERSION PROPERTY VALUE ${CIVETWEB_LUA_FILESYSTEM_VERSIO…
169 set(CIVETWEB_LUA_FILESYSTEM_MD5_HASH d0552c7e5a082f5bb2865af63fb9dc95 CACHE STRING
[all …]
D.gitignore7 *-cache
109 # Visual C++ cache files
174 *.Cache
270 # Conan test cache
D.travis.yml8 cache:
59 apt-cache search gcc | grep "GNU C compiler";
60 apt-cache search clang | grep compiler;
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-separate/
Dduk_heap_stringcache.c2 * String cache.
4 * Provides a cache to optimize indexed string lookups. The cache keeps
13 * Delete references to given hstring from the heap string cache.
15 * String cache references are 'weak': they are not counted towards
80 * Avoid using the string cache if possible: for ASCII strings byte and
82 * better than using the string cache (which may evict a more important
117 * cache. in duk_heap_strcache_offset_char2byte()
120 * the cache. For longer strings we check and update the cache as in duk_heap_strcache_offset_char2byte()
121 * necessary, inserting a new cache entry if none exists. in duk_heap_strcache_offset_char2byte()
135 DUK_DDD(DUK_DDDPRINT("stringcache before char2byte (using cache):")); in duk_heap_strcache_offset_char2byte()
[all …]
Dduk_heap.h291 * String cache should ideally be at duk_hthread level, but that would
293 * threads; string finalization must check the string cache for "weak"
487 /* string access cache (codepoint offset -> byte offset) for fast string
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-separate/
Dduk_heap_stringcache.c2 * String cache.
4 * Provides a cache to optimize indexed string lookups. The cache keeps
13 * Delete references to given hstring from the heap string cache.
15 * String cache references are 'weak': they are not counted towards
80 * Avoid using the string cache if possible: for ASCII strings byte and
82 * better than using the string cache (which may evict a more important
117 * cache. in duk_heap_strcache_offset_char2byte()
120 * the cache. For longer strings we check and update the cache as in duk_heap_strcache_offset_char2byte()
121 * necessary, inserting a new cache entry if none exists. in duk_heap_strcache_offset_char2byte()
135 DUK_DDD(DUK_DDDPRINT("stringcache before char2byte (using cache):")); in duk_heap_strcache_offset_char2byte()
[all …]
Dduk_heap.h291 * String cache should ideally be at duk_hthread level, but that would
293 * threads; string finalization must check the string cache for "weak"
487 /* string access cache (codepoint offset -> byte offset) for fast string
/civetweb-2.7.6/test/
Dpage_keep_alive_chunked.lua9 mg.write("Cache-Control: no-cache\r\n")
27 mg.write("Cache-Control: max-age=0, must-revalidate\r\n")
28 --mg.write("Cache-Control: no-cache\r\n")
29 --mg.write("Cache-Control: no-store\r\n")
Dpage_keep_alive.lua22 mg.write("Cache-Control: no-cache\r\n")
Dpage_shared.lua3 mg.write("Cache-Control: no-cache, no-store, must-revalidate, max-age=0\r\n")
Dhandle_form.lua6 mg.write("Cache-Control: max-age=0, must-revalidate\r\n")
16 mg.write("Cache-Control: max-age=0, must-revalidate\r\n")
/civetweb-2.7.6/src/third_party/lua-5.1.5/test/
Dfib.lua1 -- fibonacci function with cache
13 -- a general-purpose value cache
14 function cache(f) function
39 fib=cache(fib)
DREADME12 fib.lua fibonacci function with cache
/civetweb-2.7.6/src/third_party/
Dsqlite3.h1656 ** that SQLite can use for the database page cache with the default page
1657 ** cache implementation.
1659 ** cache implementation is loaded using the [SQLITE_CONFIG_PCACHE2].
1661 ** 8-byte aligned memory (pMem), the size of each page cache line (sz),
1662 ** and the number of cache lines (N).
1673 ** to satisfy page cache needs, falling back to [sqlite3_malloc()] if
1674 ** a page cache line is larger than sz bytes or if all of the pMem buffer
1677 ** does an initial bulk allocation for page cache memory
1678 ** from [sqlite3_malloc()] sufficient for N cache lines if N is positive or
1680 ** page cache memory is needed beyond what is provided by the initial
[all …]
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/
Dlstring.c100 ** Clear API string cache. (Entries cannot be empty, so fill them with
114 ** Initialize the string table and the string cache
123 for (i = 0; i < STRCACHE_N; i++) /* fill cache with valid strings */ in luaS_init()
215 ** cache (using the string address as a key). The cache can contain
Dllimits.h193 ** Size of cache for strings in the API. 'N' is the number of
195 ** makes a direct cache.)
Dltable.c377 /* doesn't need barrier/invalidate cache, as entry was in luaH_resize()
480 /* whatever called 'newkey' takes care of TM cache */ in luaH_newkey()
608 ** barrier and invalidate the TM cache.
/civetweb-2.7.6/test/ajax/
Decho.cgi5 echo "Cache-Control: no-cache"
Decho.lua30 mg.write("Cache-Control: no-cache\r\n")
Decho.cgi.old42 print "Cache-Control: no-cache"
/civetweb-2.7.6/src/third_party/lua-5.2.4/src/
Dlgc.c165 ** barrier for prototypes. When creating first closure (cache is
175 if (p->cache == NULL) { /* first time? */ in luaC_barrierproto_()
459 if (f->cache && iswhite(obj2gco(f->cache))) in traverseproto()
460 f->cache = NULL; /* allow cache to be collected */ in traverseproto()
Dltable.c327 /* doesn't need barrier/invalidate cache, as entry was in luaH_resize()
416 /* whatever called 'newkey' take care of TM cache and GC barrier */ in luaH_newkey()
508 ** barrier and invalidate the TM cache.
Dlvm.c380 Closure *c = p->cache; in getcached()
398 ** before the assignment to 'p->cache', as the function needs the
416 p->cache = ncl; /* save it on cache for reuse */ in pushclosure()
/civetweb-2.7.6/examples/_obsolete/chat/
Dchat.c28 "Cache: no-cache\r\n"
/civetweb-2.7.6/docs/
DUserManual.md621 Set the maximum time (in seconds) a cache may store a static files.
623 This option will set the `Cache-Control: max-age` value for static files.
625 must send cache control headers by themselves.
629 A value of 0 will send "do not cache" headers for all static files.

123