Searched full:os (Results 1 – 25 of 110) sorted by relevance
12345
/civetweb-2.7.6/resources/ |
D | complete.lua | 33 comp_line = os.getenv("COMP_LINE") -- entire command line 34 comp_point = os.getenv("COMP_POINT") -- position of cursor (index) 35 comp_type = os.getenv("COMP_TYPE") -- type: 74 os.exit(0) 83 os.exit(0) 93 os.exit(0) 102 os.exit(0) 107 os.exit(0) 111 os.exit(0) 119 os.exit(0) [all …]
|
/civetweb-2.7.6/ |
D | .travis.yml | 123 os: linux 142 os: osx 168 os: linux 202 os: linux 237 os: linux 271 os: linux 306 os: linux 337 - os: linux 362 - os: osx 388 os: osx [all …]
|
D | conanfile.py | 16 settings = "os", "compiler", "build_type", "arch" 35 if self.settings.os == 'Windows': 74 if self.settings.os == "Linux": 78 elif self.settings.os == "Macos": 82 elif self.settings.os == "Windows":
|
/civetweb-2.7.6/conan/ |
D | build.py | 4 import os 25 return os.getenv("CONAN_USERNAME", "civetweb") 37 if os.getenv("CONAN_UPLOAD", None) is not None: 38 return os.getenv("CONAN_UPLOAD") 50 return os.getenv("CONAN_UPLOAD_ONLY_WHEN_STABLE", True) 56 return os.getenv("CONAN_STABLE_BRANCH_PATTERN", r"v(\d+\.\d+)") 70 return os.getenv("CONAN_REFERENCE", "civetweb/{}".format(self.version)) 80 test_folder=os.path.join("conan", "test_package"))
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/config/ |
D | genconfig.py | 24 import os 153 if os.path.isdir(dirname) and '-genconfig' in dirname: 255 sub_fn = os.path.normpath(os.path.join(filename, '..', '..', 'header-snippets', m.group(1))) 309 sn = Snippet.fromFile(os.path.join(self.base_dir, fn)) 504 for fn in os.listdir(dirname): 505 root, ext = os.path.splitext(fn) 508 with open(os.path.join(dirname, fn), 'rb') as f: 535 for fn in os.listdir(dirname): 536 root, ext = os.path.splitext(fn) 539 with open(os.path.join(dirname, fn), 'rb') as f: [all …]
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/config/ |
D | genconfig.py | 24 import os 153 if os.path.isdir(dirname) and '-genconfig' in dirname: 255 sub_fn = os.path.normpath(os.path.join(filename, '..', '..', 'header-snippets', m.group(1))) 309 sn = Snippet.fromFile(os.path.join(self.base_dir, fn)) 504 for fn in os.listdir(dirname): 505 root, ext = os.path.splitext(fn) 508 with open(os.path.join(dirname, fn), 'rb') as f: 535 for fn in os.listdir(dirname): 536 root, ext = os.path.splitext(fn) 539 with open(os.path.join(dirname, fn), 'rb') as f: [all …]
|
/civetweb-2.7.6/test/ |
D | filehandler.lua | 4 mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") 11 mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") 44 mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") 51 mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") 63 mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") 74 os.remove(filename) 77 mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") 90 mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n")
|
D | page4.lua | 4 now = os.time() 64 mg.write(" You visited this page " .. os.difftime(now, cookie_value) .. " seconds before.\r\n") 89 local ht = HugeText(os.date("%a %b. %d"))
|
D | page2.lp | 36 libs = {"string", "math", "table", "io", "os", "bit32", "utf8", "package", "coroutine", "debug"}; 54 <p> Today is <? mg.write(os.date("%A")) ?>
|
D | websocket.lua | 6 f:write(os.date() .. " - " .. text .. "\n") 93 local date = os.date('*t');
|
D | MakefileTest.mk | 11 include $(TOP)/resources/Makefile.in-os 88 .PHONY: all buildoptions buildinstall clean os linux
|
D | page2.lua | 44 libs = {"string", "math", "table", "io", "os", "bit32", "utf8", "package", "coroutine", "debug"}; 91 mg.write("<p> Today is " .. os.date("%A") .. "</p>\n");
|
D | resource_script_demo.lua | 6 resourcedir = os.getenv(envVar) or "R:\\RESOURCEDIR" 98 os.remove(file)
|
/civetweb-2.7.6/src/third_party/lua-5.1.5/doc/ |
D | contents.html | 273 <A HREF="manual.html#pdf-os.clock">os.clock</A><BR> 274 <A HREF="manual.html#pdf-os.date">os.date</A><BR> 275 <A HREF="manual.html#pdf-os.difftime">os.difftime</A><BR> 276 <A HREF="manual.html#pdf-os.execute">os.execute</A><BR> 277 <A HREF="manual.html#pdf-os.exit">os.exit</A><BR> 278 <A HREF="manual.html#pdf-os.getenv">os.getenv</A><BR> 279 <A HREF="manual.html#pdf-os.remove">os.remove</A><BR> 280 <A HREF="manual.html#pdf-os.rename">os.rename</A><BR> 281 <A HREF="manual.html#pdf-os.setlocale">os.setlocale</A><BR> 282 <A HREF="manual.html#pdf-os.time">os.time</A><BR> [all …]
|
/civetweb-2.7.6/conan/test_package/ |
D | conanfile.py | 3 import os 8 settings = "os", "compiler", "build_type", "arch" 17 …assert os.path.isfile(os.path.join(self.deps_cpp_info["civetweb"].rootpath, "licenses", "LICENSE.m… 18 bin_path = os.path.join("bin", "test_package")
|
/civetweb-2.7.6/src/third_party/lua-5.2.4/doc/ |
D | contents.html | 272 <A HREF="manual.html#6.9">os</A><BR> 273 <A HREF="manual.html#pdf-os.clock">os.clock</A><BR> 274 <A HREF="manual.html#pdf-os.date">os.date</A><BR> 275 <A HREF="manual.html#pdf-os.difftime">os.difftime</A><BR> 276 <A HREF="manual.html#pdf-os.execute">os.execute</A><BR> 277 <A HREF="manual.html#pdf-os.exit">os.exit</A><BR> 278 <A HREF="manual.html#pdf-os.getenv">os.getenv</A><BR> 279 <A HREF="manual.html#pdf-os.remove">os.remove</A><BR> 280 <A HREF="manual.html#pdf-os.rename">os.rename</A><BR> 281 <A HREF="manual.html#pdf-os.setlocale">os.setlocale</A><BR> [all …]
|
/civetweb-2.7.6/src/third_party/lua-5.3.5/doc/ |
D | contents.html | 258 <A HREF="manual.html#6.9">os</A><BR> 259 <A HREF="manual.html#pdf-os.clock">os.clock</A><BR> 260 <A HREF="manual.html#pdf-os.date">os.date</A><BR> 261 <A HREF="manual.html#pdf-os.difftime">os.difftime</A><BR> 262 <A HREF="manual.html#pdf-os.execute">os.execute</A><BR> 263 <A HREF="manual.html#pdf-os.exit">os.exit</A><BR> 264 <A HREF="manual.html#pdf-os.getenv">os.getenv</A><BR> 265 <A HREF="manual.html#pdf-os.remove">os.remove</A><BR> 266 <A HREF="manual.html#pdf-os.rename">os.rename</A><BR> 267 <A HREF="manual.html#pdf-os.setlocale">os.setlocale</A><BR> [all …]
|
/civetweb-2.7.6/test/ajax/ |
D | echo.cgi.old | 13 method = os.getenv("REQUEST_METHOD") 14 uri = os.getenv("REQUEST_URI"); 15 query = os.getenv("QUERY_STRING"); 16 datalen = os.getenv("CONTENT_LENGTH"); 31 resp = resp .. '"time" : "' .. os.date() .. '" ';
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/ |
D | Makefile.sharedlibrary | 47 gcc -shared -fPIC -Wall -Wextra -Os -Wl,-soname,libduktape.so.$(SONAME_VERSION) \ 51 gcc -shared -fPIC -g -Wall -Wextra -Os -Wl,-soname,libduktaped.so.$(SONAME_VERSION) \ 71 gcc $(CCOPTS) -Wall -Wextra -Os -o $@ ./examples/cmdline/duk_cmdline.c -lduktape -lm
|
D | Makefile.hello | 14 # on the size of -Os code, e.g. gcc-4.6 is much worse than gcc-4.5. 17 CCOPTS = -Os -pedantic -std=c99 -Wall -fstrict-aliasing -fomit-frame-pointer
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/ |
D | Makefile.sharedlibrary | 47 gcc -shared -fPIC -Wall -Wextra -Os -Wl,-soname,libduktape.so.$(SONAME_VERSION) \ 51 gcc -shared -fPIC -g -Wall -Wextra -Os -Wl,-soname,libduktaped.so.$(SONAME_VERSION) \ 71 gcc $(CCOPTS) -Wall -Wextra -Os -o $@ ./examples/cmdline/duk_cmdline.c -lduktape -lm
|
D | Makefile.hello | 14 # on the size of -Os code, e.g. gcc-4.6 is much worse than gcc-4.5. 17 CCOPTS = -Os -pedantic -std=c99 -Wall -fstrict-aliasing -fomit-frame-pointer
|
/civetweb-2.7.6/src/third_party/lua-5.1.5/test/ |
D | printf.lua | 7 printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())
|
D | fib.lua | 29 local c=os.clock() 31 local t=os.clock()-c
|
D | life.lua | 13 -- local i=os.clock()+1 while(os.clock()<i) do end
|
12345