- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 495 for fixes (0.14 sec)
-
src/main/webapp/js/admin/adminlte.min.js
unction(){var e=n.default("body");return e.hasClass("layout-navbar-fixed")||e.hasClass("layout-sm-navbar-fixed")||e.hasClass("layout-md-navbar-fixed")||e.hasClass("layout-lg-navbar-fixed")||e.hasClass("layout-xl-navbar-fixed")},t._isFooterFixed=function(){var e=n.default("body");return e.hasClass("layout-footer-fixed")||e.hasClass("layout-sm-footer-fixed")||e.hasClass("layout-md-footer-fixed")||e.hasClass("layout-lg-footer-fixed")||e.hasClass("layout-xl-footer-fixed")},t._fixScrollHeight=function(){var...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 45.3K bytes - Viewed (0) -
pom.xml
<group>${packaging.fess.group}</group> </mapper> </data> <!-- Add configuration files --> <data> <type>files</type> <paths> <path>${project.basedir}/src/main/assemblies/files/tomcat_config.properties</path> <path>${project.basedir}/src/main/assemblies/files/logging.properties</path> </paths> <dst>${packaging.fess.conf.dir}</dst> <mapper>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:22:58 UTC 2025 - 49.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java
} /** * Retrieves a list of available backup files. * * @return JSON response with backup file list */ // GET /api/admin/backup/files @Execute public JsonResponse<ApiResult> files() { final List<Map<String, String>> list = getBackupItems(); return asJson(new ApiBackupFilesResponse().files(list).total(list.size()).status(ApiResult.Status.OK).result()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java
assertEquals("Deleted 1 thumbnail files.", result); } // Test execute with successful purge (multiple files deleted) public void test_execute_multipleFilesDeleted() { thumbnailManager.setPurgeCallCount(100); String result = purgeThumbnailJob.execute(); assertEquals("Deleted 100 thumbnail files.", result); } // Test execute with custom expiry
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
} files = listFiles("*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null); try { for (i = 0; i < files.length; i++) { ndest = new SmbFile(dest, files[i].getName(), files[i].type, files[i].attributes, files[i].createTime, files[i].lastModified, files[i].size); files[i].copyTo0(ndest, b, bsize, w, req, resp);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/EditForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.design; /** * Form class for editing design files in the admin interface. * This form handles the editing of template and design files used * for customizing the search interface appearance and layout. */ public class EditForm { /** * Creates a new EditForm instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
*/ protected final long expiry; /** * Count of processed files. */ protected long count; /** * Maximum number of files to purge in a single operation. */ protected final int maxPurgeSize; /** * List of files marked for deletion. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/DesignForm.java
* Handles upload and management of design templates and CSS files. */ public class DesignForm { /** * Creates a new instance of DesignForm. * This constructor initializes the form for design file management * in the admin interface, handling upload and management of templates and CSS files. */ public DesignForm() { // Default constructor with explicit documentation
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/ParseResponseWithMoshi.kt
val gist = gistJsonAdapter.fromJson(response.body!!.source()) for ((key, value) in gist!!.files!!) { println(key) println(value.content) } } } @JsonClass(generateAdapter = true) data class Gist( var files: Map<String, GistFile>?, ) @JsonClass(generateAdapter = true) data class GistFile( var content: String?, ) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/zip/ZipFileUtilTest.java
*/ public class ZipFileUtilTest extends TestCase { /** * @throws Exception */ public void testToJarFilePath() throws Exception { final URL url = new URL(null, "zip:/Program Files/foo.zip!/", new URLStreamHandler() { @Override protected void parseURL(final URL u, final String spec, final int start, final int limit) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.6K bytes - Viewed (0)