Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Fourth (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java

                contexts[1] = null; // Null context
                contexts[2] = new MockCreateContextRequest("THIRD");
                contexts[3] = new MockCreateContextRequest("FOURTH");
    
                byte[] buffer = new byte[256];
                int offset = 0;
                int validCount = 0;
    
                for (CreateContextRequest context : contexts) {
                    if (context != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top