Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,333 for director (0.04 sec)

  1. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

            if (logger.isDebugEnabled()) {
                logger.debug("Create thumbnail task: {}", task);
            }
            return task;
        }
    
        /**
         * Sets the directory name length for thumbnail storage.
         * @param directoryNameLength The directory name length.
         */
        public void setDirectoryNameLength(final int directoryNameLength) {
            this.directoryNameLength = directoryNameLength;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java

    import java.util.HashSet;
    import java.util.Map;
    import java.util.Set;
    
    import org.codelibs.fess.helper.LabelTypeHelper;
    import org.codelibs.fess.helper.LanguageHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.opensearch.client.SearchEngineClient;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.index.query.QueryBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/graph/AbstractStandardDirectedNetworkTest.java

        // Passed nodes should be in the correct edge direction, first is the
        // source node and the second is the target node
        assertThat(network.edgesConnecting(N2, N1)).isEmpty();
      }
    
      @Test
      public void inEdges_oneEdge() {
        addEdge(N1, N2, E12);
        assertThat(network.inEdges(N2)).containsExactly(E12);
        // Edge direction handled correctly
        assertThat(network.inEdges(N1)).isEmpty();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/graph/AbstractStandardDirectedNetworkTest.java

        // Passed nodes should be in the correct edge direction, first is the
        // source node and the second is the target node
        assertThat(network.edgesConnecting(N2, N1)).isEmpty();
      }
    
      @Test
      public void inEdges_oneEdge() {
        addEdge(N1, N2, E12);
        assertThat(network.inEdges(N2)).containsExactly(E12);
        // Edge direction handled correctly
        assertThat(network.inEdges(N1)).isEmpty();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. src/test/java/jcifs/http/NetworkExplorerTest.java

            verify(response).setHeader("WWW-Authenticate", "NTLM");
            verify(response).flushBuffer();
        }
    
        /**
         * Test doGet with NTLM authentication for directory listing
         * This test verifies the authentication flow without actual network operations
         */
        @Test
        void testDoGet_DirectoryListing() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

        }
    
        public void test_getPluginJarFiles_withPrefix() {
            File[] pluginFiles = ResourceUtil.getPluginJarFiles("plugin");
            assertNotNull(pluginFiles);
            // Should return empty array when plugin directory doesn't exist
            assertEquals(0, pluginFiles.length);
        }
    
        public void test_getPluginJarFiles_withFilter() {
            FilenameFilter filter = (dir, name) -> name.endsWith(".jar");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p>The specified map must be empty at the time this method is invoked, and should not be
       * accessed directly after this method returns. These conditions are ensured if the map is created
       * empty, passed directly to this method, and no reference to the map is retained, as illustrated
       * in the following code fragment:
       *
       * {@snippet :
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/component.xml

          </includes>
        </fileSet>
        <fileSet>
          <directory>target/maven-shared-archive-resources/META-INF</directory>
          <outputDirectory>./</outputDirectory>
          <includes>
            <include>LICENSE</include>
            <include>NOTICE</include>
          </includes>
        </fileSet>
        <fileSet>
          <directory>target/licenses/lib</directory>
          <outputDirectory>lib</outputDirectory>
          <includes>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/CrawlJob.java

                if (logger.isInfoEnabled()) {
                    logger.info("Crawler: \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
    - 19.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHookTest.java

     */
    package org.codelibs.fess.mylasta.direction.sponsor;
    
    import java.lang.reflect.Field;
    import java.util.TimeZone;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.dbflute.system.DBFluteSystem;
    import org.dbflute.system.provider.DfFinalTimeZoneProvider;
    import org.lastaflute.core.direction.FwAssistantDirector;
    
    public class FessCurtainBeforeHookTest extends UnitFessTestCase {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.1K bytes
    - Viewed (0)
Back to top