/civetweb-2.7.6/ |
D | conanfile.py | 34 def config_options(self): argument 35 if self.settings.os == 'Windows': 36 del self.options.fPIC 38 def configure(self): argument 39 if not self.options.enable_cxx: 40 del self.settings.compiler.libcxx 42 def requirements(self): argument 43 if self.options.enable_ssl: 44 self.requires("OpenSSL/1.0.2q@conan/stable") 46 def _configure_cmake(self): argument [all …]
|
D | Makefile | 68 CFLAGS += -Wall -Wextra -Wshadow -Wformat-security -Winit-self -Wmissing-prototypes -D$(TARGET_OS) …
|
/civetweb-2.7.6/src/third_party/lua-5.1.5/test/ |
D | life.lua | 33 self[top+y][left+x] = shape[y*shape.w+x+1] 40 local ym1,y,yp1,yi=self.h-1,self.h,1,self.h 42 local xm1,x,xp1,xi=self.w-1,self.w,1,self.w 44 local sum = self[ym1][xm1] + self[ym1][x] + self[ym1][xp1] + 45 self[y][xm1] + self[y][xp1] + 46 self[yp1][xm1] + self[yp1][x] + self[yp1][xp1] 47 next[y][x] = ((sum==2) and self[y][x]) or ((sum==3) and 1) or 0 57 for y=1,self.h do 58 for x=1,self.w do 59 out=out..(((self[y][x]>0) and ALIVE) or DEAD)
|
/civetweb-2.7.6/conan/ |
D | build.py | 14 def branch(self): argument 22 def username(self): argument 28 def upload(self): argument 40 prog = re.compile(self.stable_branch_pattern) 41 if self.branch and prog.match(self.branch): 47 def upload_only_when_stable(self): argument 53 def stable_branch_pattern(self): argument 59 def version(self): argument 60 regex = re.compile(self.stable_branch_pattern) 61 match = regex.match(self.branch) [all …]
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/config/ |
D | genconfig.py | 186 …def __init__(self, lines, provides=None, requires=None, autoscan_requires=True, autoscan_provides=… argument 187 self.lines = [] 192 self.lines.append(line) 194 self.lines.append(line.encode('utf-8')) 197 self.provides = {} 200 self.provides[k] = True 201 self.requires = {} 204 self.requires[k] = True 226 self.provides[m.group(1)] = True 239 elif self.provides.has_key(m): [all …]
|
D | duk_config.h-modular-dll | 2623 * If guess goes wrong, crashes may result; self tests also verify
|
D | duk_config.h-modular-static | 2623 * If guess goes wrong, crashes may result; self tests also verify
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/config/ |
D | genconfig.py | 186 …def __init__(self, lines, provides=None, requires=None, autoscan_requires=True, autoscan_provides=… argument 187 self.lines = [] 192 self.lines.append(line) 194 self.lines.append(line.encode('utf-8')) 197 self.provides = {} 200 self.provides[k] = True 201 self.requires = {} 204 self.requires[k] = True 226 self.provides[m.group(1)] = True 239 elif self.provides.has_key(m): [all …]
|
D | duk_config.h-modular-dll | 2623 * If guess goes wrong, crashes may result; self tests also verify
|
D | duk_config.h-modular-static | 2623 * If guess goes wrong, crashes may result; self tests also verify
|
/civetweb-2.7.6/conan/test_package/ |
D | conanfile.py | 11 def build(self): argument 12 cmake = CMake(self) 16 def test(self): argument 17 …assert os.path.isfile(os.path.join(self.deps_cpp_info["civetweb"].rootpath, "licenses", "LICENSE.m… 19 self.run(bin_path, run_environment=True)
|
/civetweb-2.7.6/docs/ |
D | OpenSSL.md | 39 Creating a self signed certificate 124 "Creating a self signed certificate", but it will have several
|
D | UserManual.md | 9 The stand-alone server is self-contained, and does not require any external
|
/civetweb-2.7.6/src/ |
D | md5.inl | 127 self-checking.
|
D | mod_lua.inl | 2152 /* self.__index = self */
|
/civetweb-2.7.6/examples/_obsolete/docroot/ |
D | jquery.js | 145 …nt;return{top:d.top+(self.pageYOffset||c.support.boxModel&&f.scrollTop||b.scrollTop)-(f.clientTop|…
|
/civetweb-2.7.6/src/third_party/ |
D | sqlite3.c | 23923 pthread_t self = pthread_self(); in pthreadMutexEnter() local 23924 if( p->nRef>0 && pthread_equal(p->owner, self) ){ in pthreadMutexEnter() 23929 p->owner = self; in pthreadMutexEnter() 23966 pthread_t self = pthread_self(); in pthreadMutexTry() local 23967 if( p->nRef>0 && pthread_equal(p->owner, self) ){ in pthreadMutexTry() 23972 p->owner = self; in pthreadMutexTry()
|