Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 285 for director (0.04 sec)

  1. guava/src/com/google/common/graph/Network.java

       */
      Graph<N> asGraph();
    
      //
      // Network properties
      //
    
      /**
       * Returns true if the edges in this network are directed. Directed edges connect a {@link
       * EndpointPair#source() source node} to a {@link EndpointPair#target() target node}, while
       * undirected edges connect a pair of nodes to each other.
       */
      boolean isDirected();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:03:02 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            assertTrue(filename.contains("/"));
        }
    
        // Test getImageFilename with docid - use the String version directly
        public void test_getImageFilename_withDocId() {
            String docid = "1234567890abcdef";
            // Call the String version directly
            String filename = thumbnailManager.getImageFilename(docid);
            assertNotNull(filename);
            assertTrue(filename.endsWith(".png"));
    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/util/ResourceUtil.java

         * @return the Path object pointing to the site directory
         */
        public static Path getSitePath(final String... names) {
            return getPath("WEB-INF/", "site", names);
        }
    
        /**
         * Gets the path to plugin files directory.
         *
         * @param names the path components to append to the plugin directory
         * @return the Path object pointing to the plugin 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)
  4. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

                assertTrue(true);
            } finally {
                if (outputFile.exists()) {
                    outputFile.delete();
                }
            }
        }
    
        // Test parent directory scenarios
        public void test_generate_parent_directory_not_exists() throws Exception {
            final File tempDir = new File(System.getProperty("java.io.tmpdir"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/TempFileCreator.java

     * a file or directory that would be more accessible.
     */
    @J2ktIncompatible
    @GwtIncompatible
    @J2ObjCIncompatible
    abstract class TempFileCreator {
      static final TempFileCreator INSTANCE = pickSecureCreator();
    
      /**
       * @throws IllegalStateException if the directory could not be created (to implement the contract
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/SuggestJob.java

                if (logger.isInfoEnabled()) {
                    logger.info("SuggestCreator: \nDirectory={}\nOptions={}", baseDir, cmdList);
                }
    
                final JobProcess jobProcess = processHelper.startProcess(sessionId, cmdList, pb -> {
                    pb.directory(baseDir);
                    pb.redirectErrorStream(true);
                });
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

                if (logger.isInfoEnabled()) {
                    logger.info("ThumbnailGenerator: \nDirectory={}\nOptions={}", baseDir, cmdList);
                }
    
                final JobProcess jobProcess = processHelper.startProcess(sessionId, cmdList, pb -> {
                    pb.directory(baseDir);
                    pb.redirectErrorStream(true);
                });
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            return redirectWith(getClass(), moreUrl("list/" + encodeId(pi.getPath())));
        }
    
        /**
         * Creates a new directory in the storage system.
         *
         * @param form the item form containing directory information
         * @return HTML response redirecting to the new directory
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createDir(final ItemForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

         */
        public void setCommandTimeout(final long commandTimeout) {
            this.commandTimeout = commandTimeout;
        }
    
        /**
         * Sets the base directory for command execution.
         * @param baseDir The base directory.
         */
        public void setBaseDir(final File baseDir) {
            this.baseDir = baseDir;
        }
    
        /**
         * Sets the timeout for destroying processes.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                if (dir == null) {
                    return false;
                }
                final File directory = dir.toFile();
                if (directory.list() != null && directory.list().length == 0 && !THUMBNAILS_DIR_NAME.equals(directory.getName())) {
                    Files.delete(dir);
                    if (logger.isDebugEnabled()) {
                        logger.debug("Delete {}", dir);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top