Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for THIRD (0.02 sec)

  1. src/test/java/org/codelibs/fess/util/ErrorToWarnRewritePolicyTest.java

            assertEquals(Level.DEBUG, result.getLevel());
        }
    
        public void test_rewrite_multiple_logger_names() {
            String[] loggerNames = { "test.logger", "another.logger", "third.logger" };
            ErrorToWarnRewritePolicy policy = new ErrorToWarnRewritePolicy(loggerNames);
    
            LogEvent event1 = Log4jLogEvent.newBuilder()
                    .setLoggerName("test.logger.sub")
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            item.setNewInput("");
            assertEquals("", item.toLineString());
            assertTrue(item.isUpdated());
            assertTrue(item.isDeleted());
    
            item.setNewInput("third");
            assertEquals("third", item.toLineString());
            assertTrue(item.isUpdated());
            assertFalse(item.isDeleted());
        }
    
        public void test_specialCharacters() {
            // Test with special characters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java

            assertEquals("", result1);
    
            // Second call (even) should fail
            String result2 = aggregateLogJob.execute();
            assertTrue(result2.contains("Even call error"));
    
            // Third call (odd) should succeed
            String result3 = aggregateLogJob.execute();
            assertEquals("", result3);
        }
    
        public void test_execute_performanceWithLargeErrorMessage() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Utf8.java

                || (byte1 == (byte) 0xE0 && byte2 < (byte) 0xA0)
                // Check for illegal surrogate codepoints.
                || (byte1 == (byte) 0xED && byte2 >= (byte) 0xA0)
                // Third byte trailing-byte test.
                || bytes[index++] > (byte) 0xBF) {
              return false;
            }
          } else {
            // Four-byte form.
            if (index + 2 >= end) {
              return false;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java

            assertTrue(item.isUpdated());
            assertTrue(item.isDeleted());
            assertEquals("", item.toLineString());
    
            item.setNewInput("third");
            assertTrue(item.isUpdated());
            assertFalse(item.isDeleted());
            assertEquals("third", item.toLineString());
        }
    
        public void test_specialCharacters() {
            // Test with special characters in input
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

            assertNotSame(exception1, exception2);
            assertNotSame(exception2, exception3);
            assertNotSame(exception1, exception3);
    
            assertEquals("First instance", exception1.getMessage());
            assertEquals("Second instance", exception2.getMessage());
            assertEquals("Third instance", exception3.getMessage());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java

            // First modification
            item.id = 50L;
            assertEquals(50L, item.getId());
    
            // Second modification
            item.id = 100L;
            assertEquals(100L, item.getId());
    
            // Third modification back to 0
            item.id = 0L;
            assertEquals(0L, item.getId());
        }
    
        /**
         * Concrete implementation of DictionaryItem for testing purposes.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Predicates.java

       * returned predicate will always evaluate to {@code true}.
       *
       * <p><b>Discouraged:</b> Prefer using {@code first.and(second).and(third).and(...)}.
       */
      public static <T extends @Nullable Object> Predicate<T> and(
          Iterable<? extends Predicate<? super T>> components) {
        return new AndPredicate<>(defensiveCopy(components));
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  9. .github/workflows/scorecard.yml

    # This workflow uses actions that are not certified by GitHub. They are provided
    # by a third-party and are governed by separate terms of service, privacy
    # policy, and support documentation.
    
    name: Scorecard supply-chain security
    on:
      # For Branch-Protection check. Only the default branch is supported. See
      # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
      branch_protection_rule:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 19:19:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/score/LtrQueryRescorerTest.java

                    return 100;
                }
            });
    
            RescorerBuilder<?> result2 = ltrQueryRescorer.evaluate(params);
            assertNull(result2);
    
            // Third call with different model name
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                @Override
                public String getLtrModelName() {
                    return "model2";
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top