OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fileapp
(Results
1 - 5
of
5
) sorted by null
/external/chromium-trace/catapult/third_party/Paste/tests/
test_fileapp.py
16
from paste import
fileapp
17
from paste.
fileapp
import *
109
app =
fileapp
.
FileApp
(tempfile)
126
file.write("X" *
fileapp
.CACHE_SIZE) # exceed the cashe size
130
newsize =
fileapp
.CACHE_SIZE + len(content)+12
148
app =
fileapp
.DirectoryApp(tmpdir)
195
content = LETTERS * (1+(
fileapp
.CACHE_SIZE // len(LETTERS)))
198
assert len(content) >
fileapp
.CACHE_SIZE
203
app =
fileapp
.FileApp(tempfile
[
all
...]
/external/chromium-trace/catapult/third_party/Paste/paste/cowbell/
__init__.py
4
from paste.
fileapp
import
FileApp
17
app =
FileApp
(os.path.join(os.path.dirname(__file__), filename))
/external/chromium-trace/catapult/catapult_build/
dev_server.py
13
from paste import
fileapp
101
class FileAppWithGZipHandling(
fileapp
.
FileApp
):
107
# By default,
FileApp
serves gzip files as their underlying type with
/external/chromium-trace/catapult/third_party/Paste/paste/
urlparser.py
17
from paste import
fileapp
353
return
fileapp
.
FileApp
(filename)
478
return
fileapp
.
FileApp
(filename)
584
return
fileapp
._FileIter(file)
wsgilib.py
430
"wsgilib.send_file has been moved to paste.
fileapp
.
FileApp
",
432
from paste import
fileapp
433
return
fileapp
.
FileApp
(filename)
Completed in 135 milliseconds