Search Options

Results per page
Sort
Preferred Languages
Advance

Results 921 - 930 of 3,883 for void (1 sec)

  1. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/LegacyRepositorySystemTest.java

        @Test
        void testThatLocalRepositoryWithSpacesIsProperlyHandled() throws Exception {
            File basedir = new File("target/spacy path").getAbsoluteFile();
            ArtifactRepository repo = repositorySystem.createLocalRepository(basedir);
            assertEquals(basedir, new File(repo.getBasedir()));
        }
    
        @Test
        void testAuthenticationHandling() {
            Server server = new Server();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedComponentConfigurator.java

    public class EnhancedComponentConfigurator extends BasicComponentConfigurator {
    
        public EnhancedComponentConfigurator() {
            converterLookup = new EnhancedConverterLookup();
        }
    
        @Override
        public void configureComponent(
                final Object component,
                final PlexusConfiguration configuration,
                final ExpressionEvaluator evaluator,
                final ClassRealm realm,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            waitJob(NAME_PREFIX);
            refresh();
    
            ThreadUtil.sleep(3000);
        }
    
        @BeforeEach
        protected void init() {
            refresh();
        }
    
        @AfterEach
        protected void tearDown() {
        }
    
        @AfterAll
        protected static void tearDownAll() {
            final List<Map<String, Object>> jobLogList = readJobLog(NAME_PREFIX);
            for (Map<String, Object> elem : jobLogList) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/log/JulLoggerAdapter.java

        public void info(final String message) {
            logger.logp(Level.INFO, sourceClass, null, message);
        }
    
        @Override
        public void info(final String message, final Throwable t) {
            logger.logp(Level.INFO, sourceClass, null, message, t);
        }
    
        @Override
        public boolean isDebugEnabled() {
            return logger.isLoggable(Level.FINE);
        }
    
        @Override
        public void debug(final String message) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

         *
         * @param execution a execution object.
         */
        public void removeExecution(Execution execution) {
            getExecutions().remove(execution);
        } // -- void removeExecution( Execution )
    
        /**
         * Set configuration to pass to all goals run in this phase.
         *
         * @param configuration a configuration object.
         */
        public void setConfiguration(Object configuration) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsFailureUrlCB.java

            public void columnId() {
                doColumn("_id");
            }
    
            public void columnConfigId() {
                doColumn("configId");
            }
    
            public void columnErrorCount() {
                doColumn("errorCount");
            }
    
            public void columnErrorLog() {
                doColumn("errorLog");
            }
    
            public void columnErrorName() {
                doColumn("errorName");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/XmlExtractorTest.java

        public XmlExtractor xmlExtractor;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
            StandardCrawlerContainer container = new StandardCrawlerContainer().singleton("xmlExtractor", XmlExtractor.class);
            xmlExtractor = container.getComponent("xmlExtractor");
        }
    
        public void test_getXml_utf8() {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/EvictingQueueTest.java

     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public class EvictingQueueTest extends TestCase {
    
      public void testCreateWithNegativeSize() throws Exception {
        assertThrows(IllegalArgumentException.class, () -> EvictingQueue.create(-1));
      }
    
      public void testCreateWithZeroSize() throws Exception {
        EvictingQueue<String> queue = EvictingQueue.create(0);
        assertEquals(0, queue.size());
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JodExtractorTest.java

        public JodExtractor jodExtractor;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
            jodExtractor = new JodExtractor();
            jodExtractor.officeManager = LocalOfficeManager.builder().portNumbers(12002).build();
            jodExtractor.init();
        }
    
        @Override
        protected void tearDown() throws Exception {
            jodExtractor.destroy();
            super.tearDown();
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/ImmutableTableTest.java

        assertThat(table.row('c').keySet()).containsExactly(1, 2, 3).inOrder();
      }
    
      public void testSerialization_empty() {
        validateReserialization(ImmutableTable.of());
      }
    
      public void testSerialization_singleElement() {
        validateReserialization(ImmutableTable.of('a', 2, "foo"));
      }
    
      public void testDenseSerialization_manualOrder() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top