Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for directories (0.08 sec)

  1. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        /**
         * Gets the path by trying multiple locations in order of preference.
         * First tries to get the real path from servlet context, then checks various
         * fallback locations including source and target directories.
         *
         * @param root the root directory (e.g., "WEB-INF/")
         * @param base the base directory under root (e.g., "conf", "classes")
         * @param names the path components to append to the base directory
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            File emptyDir = new File(tempDir, "empty");
            emptyDir.mkdirs();
            assertTrue(emptyDir.exists());
    
            // Simulate the behavior of postVisitDirectory - delete empty directories
            if (emptyDir.isDirectory() && emptyDir.list().length == 0) {
                emptyDir.delete();
            }
    
            assertFalse(emptyDir.exists());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

         * Expiration time in milliseconds for no-image placeholder files.
         */
        protected long noImageExpired = 24 * 60 * 60 * 1000L; // 24 hours
    
        /**
         * Hash size for splitting thumbnail storage directories.
         */
        protected int splitHashSize = 10;
    
        /**
         * Default constructor for ThumbnailManager.
         */
        public ThumbnailManager() {
            // Default constructor
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  4. pom.xml

    								<type>perm</type>
    								<filemode>755</filemode>
    								<user>${packaging.fess.user}</user>
    								<group>${packaging.fess.group}</group>
    							</mapper>
    						</data>
    						<!-- Add log and temp directories -->
    						<data>
    							<type>template</type>
    							<paths>
    								<path>${packaging.fess.log.dir}</path>
    								<path>${packaging.fess.temp.dir}</path>
    							</paths>
    							<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)
  5. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            saveToken();
            return asListHtml(StringUtil.EMPTY);
        }
    
        /**
         * Displays a list of files and directories in the specified path.
         *
         * @param id the encoded path ID to list (optional)
         * @return action response with the storage list or redirect
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

                assertTrue(true);
            }
        }
    
        public void test_install_directoryEntries() throws IOException {
            // Create a zip with directory entries
            Path jarPath = tempDir.resolve("with-directories.jar");
            createMockThemeZipWithDirectories(jarPath);
    
            ThemeHelper mockThemeHelper = new ThemeHelper() {
                @Override
                protected Path getJarFile(Artifact artifact) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        /** Configuration key for SPNEGO initialization status. */
        protected static final String SPNEGO_INITIALIZED = "spnego.initialized";
    
        /** Configuration key for directories to exclude from SPNEGO authentication. */
        protected static final String SPNEGO_EXCLUDE_DIRS = "spnego.exclude.dirs";
    
        /** Configuration key for enabling delegation in SPNEGO authentication. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java

            assertSame(thumbnailJob, result);
            assertTrue(thumbnailJob.cleanup);
        }
    
        // Test execute method with successful execution
        public void test_execute_success() {
            // Create necessary directories in temp dir
            new File(tempDir, "WEB-INF/lib").mkdirs();
            new File(tempDir, "WEB-INF/env/thumbnail/lib").mkdirs();
            new File(tempDir, "WEB-INF/plugin").mkdirs();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  9. guava-gwt/pom.xml

          <!-- TODO(cpovirk): Why do we have separate src and src-super directories, anyway? -->
          <resource>
            <directory>${project.build.directory}/guava-gwt-sources</directory>
          </resource>
        </resources>
        <testResources>
          <testResource>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            if (tempDir != null && tempDir.exists()) {
                deleteDirectory(tempDir);
            }
            super.tearDown();
        }
    
        private void createRequiredDirectories() {
            // Create necessary directories for SuggestJob execution
            new File(tempDir, "WEB-INF/lib").mkdirs();
            new File(tempDir, "WEB-INF/env/suggest/lib").mkdirs();
            new File(tempDir, "WEB-INF/plugin").mkdirs();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
Back to top