Search Options

Results per page
Sort
Preferred Languages
Advance

Results 701 - 710 of 3,662 for Void (0.02 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsDuplicateHostCA.java

                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_Terms() {
            setCreatedBy_Terms(null);
        }
    
        public void setCreatedBy_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setCreatedBy_Terms("createdBy", opLambda, null);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 50.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ComparisonChainTest.java

      }
    
      public void testOneEqual() {
        assertThat(ComparisonChain.start().compare("a", "a").result()).isEqualTo(0);
      }
    
      public void testOneEqualUsingComparator() {
        assertThat(ComparisonChain.start().compare("a", "A", String.CASE_INSENSITIVE_ORDER).result())
            .isEqualTo(0);
      }
    
      public void testManyEqual() {
        assertThat(
                ComparisonChain.start()
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 03:05:13 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/message/MessageFormatterTest.java

     */
    public class MessageFormatterTest {
    
        @Before
        public void setUp() throws Exception {
            LocaleUtil.setDefault(() -> Locale.JAPANESE);
        }
    
        @After
        public void tearDown() throws Exception {
            LocaleUtil.setDefault(null);
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetMessage() throws Exception {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

        @Override
        public void setUp() throws Exception {
            super.setUp();
            ComponentUtil.setFessConfig(null);
        }
    
        @Override
        protected boolean isUseOneTimeContainer() {
            return true;
        }
    
        public void test_setFessConfig_null() {
            assertTrue(FessProp.propMap.isEmpty());
        }
    
        public void test_setFessConfig_notNull() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  5. android/guava-testlib/test/com/google/common/testing/EqualsTesterTest.java

      @Override
      public void setUp() throws Exception {
        super.setUp();
        reference = new ValidTestObject(1, 2);
        equalsTester = new EqualsTester();
        equalObject1 = new ValidTestObject(1, 2);
        equalObject2 = new ValidTestObject(1, 2);
        notEqualObject1 = new ValidTestObject(0, 2);
      }
    
      /** Test null reference yields error */
      public void testAddNullReference() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed May 14 19:40:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerStatusTest.java

         */
        public void test_valueOf_valid() {
            assertEquals(CrawlerStatus.INITIALIZING, CrawlerStatus.valueOf("INITIALIZING"));
            assertEquals(CrawlerStatus.RUNNING, CrawlerStatus.valueOf("RUNNING"));
            assertEquals(CrawlerStatus.DONE, CrawlerStatus.valueOf("DONE"));
        }
    
        /**
         * Test valueOf method with invalid values
         */
        public void test_valueOf_invalid() {
            try {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TemporaryFileInputStream.java

        }
    
        /**
         * Closes this input stream and releases any system resources associated with the stream.
         * @throws IOException if an I/O error occurs.
         */
        @Override
        public void close() throws IOException {
            try {
                fileInputStream.close();
            } finally {
                FileUtil.deleteInBackground(tempFile);
            }
        }
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/AbstractConfigHelperTest.java

    public class AbstractConfigHelperTest extends UnitFessTestCase {
    
        private TestConfigHelper configHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            configHelper = new TestConfigHelper();
        }
    
        public void test_setReloadInterval() {
            assertEquals(1000L, configHelper.reloadInterval);
    
            configHelper.setReloadInterval(5000L);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 00:03:47 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/util/PathValidatorTest.java

        public void testWindowsReservedCOM() throws Exception {
            assertThrows(SmbException.class, () -> {
                validator.validatePath("\\share\\COM1");
            });
        }
    
        @Test
        public void testWindowsReservedLPT() throws Exception {
            assertThrows(SmbException.class, () -> {
                validator.validatePath("\\share\\LPT9.doc");
            });
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java

        @Override
        protected void setUpChild() throws Exception {
            // Initialize and register PhraseQueryCommand
            queryCommand = new PhraseQueryCommand();
            queryCommand.register();
        }
    
        public void test_getQueryClassName() {
            assertEquals("PhraseQuery", queryCommand.getQueryClassName());
        }
    
        public void test_execute_withNonPhraseQuery() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top