Searched refs:fileCache (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/admingui/web/src/main/resources/grizzly/
H A DfileCacheAttrs.inc56 <sun:property id="maxAge" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18n_web.fileCache.maxAge}" helpText="$resource{i18n_web.fileCache.maxAgeHelp}" >
57 <sun:textField id="maxAge" columns="$int{20}" maxLength="#{sessionScope.fieldLengths['maxLength.fileCache.maxAge']}" text="#{pageSession.fileMap['maxAgeSeconds']}" />
61 <sun:property id="maxCacheSizeBytes" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18n_web.fileCache.MaxCacheSizeBytes}" helpText="$resource{i18n_web.fileCache.MaxCacheSizeBytesHelp}" >
62 <sun:textField id="maxCacheSizeBytes" columns="$int{20}" maxLength="#{sessionScope.fieldLengths['maxLength.fileCache.MaxCacheSizeBytes']}" text="#{pageSession.fileMap['maxCacheSizeBytes']}" />
66 <sun:property id="maxFile" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18n_web.fileCache.MaxFileCount}" helpText="$resource{i18n_web.fileCache.MaxFileCountHelp}" >
67 <sun:textField id="maxFile" columns="$int{20}" maxLength="#{sessionScope.fieldLengths['maxLength.fileCache.MaxFileCount']}" text="#{pageSession.fileMap['maxFilesCount']}" />
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/stats/
H A DFileCacheStatsProvider.java80 protected volatile FileCache fileCache; field in class:FileCacheStatsProvider
88 return fileCache;
94 fileCache = (FileCache) object;
96 fileCache = null;
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/connector/coyote/
H A DPECoyoteConnector.java188 * The maximum entries in the <code>fileCache</code>
548 * from the <code>fileCache</code>
646 * Is the fileCache enabled.
1029 * @param fileCache
1031 public void configureFileCache(FileCache fileCache) { argument
1032 if (fileCache != null) {
1034 fileCache.getEnabled()));
1035 if (fileCache.getMaxAgeSeconds() != null) {
1036 setSecondsMaxAge(Integer.parseInt(fileCache.getMaxAgeSeconds()));
1038 if (fileCache
[all...]
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DFileDirContext.java156 protected Map<String, File> fileCache = field in class:FileDirContext
335 fileCache.remove(name);
365 File newFile = fileCache.get(newName);
879 return file(base, name, name, fileCache);

Completed in 28 milliseconds