Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 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. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

            // Multiple leading backslashes - only first one gets stripped, then trailing ones get stripped
            // But getPath() adds a backslash at the beginning, so \\fourth\path\\ becomes \fourth\path\
            request.setPath("\\\\fourth\\path\\\\");
            assertEquals("\\\\fourth\\path\\", request.getPath());
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/CommonServerMessageBlockRequestTest.java

            CommonServerMessageBlockRequest fourth = third.getNext();
            boolean firstAllowsSecond = request.allowChain(nextRequest);
            boolean secondAllowsThird = nextRequest.allowChain(thirdRequest);
    
            // Then
            assertEquals(nextRequest, second);
            assertEquals(thirdRequest, third);
            assertNull(fourth);
            assertTrue(firstAllowsSecond);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeTest.java

            assertEquals(0, dst[1], "Second byte should be 0");
            assertEquals(0, dst[2], "Third byte should be 0 (no FID)");
            assertEquals(0, dst[3], "Fourth byte should be 0 (no FID)");
        }
    
        @Test
        public void testReadSetupWireFormat() {
            // Test the readSetupWireFormat method
            TransWaitNamedPipe pipe = new TransWaitNamedPipe("\\\\pipe\\testPipe");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.3K 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. 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)
  8. 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)
  9. src/test/java/jcifs/internal/util/StringUtilTest.java

            // First: "" (sb becomes "")
            // Second: sb.length() is 0, no delimiter, append null (sb becomes "null")
            // Third: sb.length() > 0, add "-" + "value" (sb becomes "null-value")
            // Fourth: sb.length() > 0, add "-" + "" (sb becomes "null-value-")
            // Fifth: sb.length() > 0, add "-" + null (sb becomes "null-value--null")
            assertEquals("null-value--null", result);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 9K bytes
    - Viewed (0)
  10. 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)
Back to top