Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for Fourth (0.04 sec)

  1. src/main/java/org/codelibs/core/misc/Tuple4.java

            this.value3 = value3;
        }
    
        /**
         * Returns the fourth value.
         *
         * @return The fourth value
         */
        public T4 getValue4() {
            return value4;
        }
    
        /**
         * Sets the fourth value.
         *
         * @param value4
         *            The fourth value
         */
        public void setValue4(final T4 value4) {
            this.value4 = value4;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/misc/Tuple5.java

            this.value3 = value3;
        }
    
        /**
         * Returns the fourth value.
         *
         * @return The fourth value
         */
        public T4 getValue4() {
            return value4;
        }
    
        /**
         * Sets the fourth value.
         *
         * @param value4
         *            The fourth value
         */
        public void setValue4(final T4 value4) {
            this.value4 = value4;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/features/CollectionSize.java

      ZERO(0),
      /** Test a one-element collection. */
      ONE(1),
      /** Test a three-element collection. */
      SEVERAL(3),
      /*
       * TODO: add VERY_LARGE, noting that we currently assume that the fourth
       * sample element is not in any collection
       */
    
      ANY(ZERO, ONE, SEVERAL);
    
      private final Set<Feature<? super Collection>> implied;
      private final @Nullable Integer numElements;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/features/CollectionSize.java

      ZERO(0),
      /** Test a one-element collection. */
      ONE(1),
      /** Test a three-element collection. */
      SEVERAL(3),
      /*
       * TODO: add VERY_LARGE, noting that we currently assume that the fourth
       * sample element is not in any collection
       */
    
      ANY(ZERO, ONE, SEVERAL);
    
      private final Set<Feature<? super Collection>> implied;
      private final @Nullable Integer numElements;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java

            assertTrue(aggregateLogJob.execute().contains("Invalid argument"));
    
            // Third execution - IllegalStateException
            assertTrue(aggregateLogJob.execute().contains("Invalid state"));
    
            // Fourth execution - NullPointerException
            assertTrue(aggregateLogJob.execute().contains("Null pointer"));
    
            // Fifth execution - RuntimeException
            assertTrue(aggregateLogJob.execute().contains("Generic error"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/score/QueryRescorerTest.java

            assertNotNull(queryRescorer.evaluate(params)); // Second call - even
            assertNull(queryRescorer.evaluate(params)); // Third call - odd
            assertNotNull(queryRescorer.evaluate(params)); // Fourth call - even
        }
    
        /**
         * Creates a mock RescorerBuilder for testing purposes.
         * Uses QueryRescorerBuilder with a simple query.
         */
        private RescorerBuilder<?> createMockRescorerBuilder() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Utf8.java

                || (((byte1 << 28) + (byte2 - (byte) 0x90)) >> 30) != 0
                // Third byte trailing-byte test
                || bytes[index++] > (byte) 0xBF
                // Fourth byte trailing-byte test
                || bytes[index++] > (byte) 0xBF) {
              return false;
            }
          }
        }
      }
    
      private static String unpairedSurrogateMsg(int i) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *
       * @param <V1> the type returned by the first future
       * @param <V2> the type returned by the second future
       * @param <V3> the type returned by the third future
       * @param <V4> the type returned by the fourth future
       */
      public static final class Combiner4<
              V1 extends @Nullable Object,
              V2 extends @Nullable Object,
              V3 extends @Nullable Object,
              V4 extends @Nullable Object>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 97.8K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      private abstract static class Third<T, D> extends Second<T> {}
    
      private abstract static class Fourth<T, D> extends Third<D, T> {}
    
      private static class ConcreteIntegerString extends Fourth<Integer, String> {}
    
      private static class ConcreteStringInteger extends Fourth<String, Integer> {}
    
      public void testAssignableClassToClass() {
        @SuppressWarnings("rawtypes") // To test TypeToken<List>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      private abstract static class Third<T, D> extends Second<T> {}
    
      private abstract static class Fourth<T, D> extends Third<D, T> {}
    
      private static class ConcreteIntegerString extends Fourth<Integer, String> {}
    
      private static class ConcreteStringInteger extends Fourth<String, Integer> {}
    
      public void testAssignableClassToClass() {
        @SuppressWarnings("rawtypes") // To test TypeToken<List>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
Back to top