Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 1A (0.01 sec)

  1. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            checkVersionsEqual("1", "1.0-0");
            checkVersionsEqual("1.0", "1.0-0");
            // no separator between number and character
            checkVersionsEqual("1a", "1-a");
            checkVersionsEqual("1a", "1.0-a");
            checkVersionsEqual("1a", "1.0.0-a");
            checkVersionsEqual("1.0a", "1-a");
            checkVersionsEqual("1.0.0a", "1-a");
            checkVersionsEqual("1x", "1-x");
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/graph/DefaultNetworkImplementationsTest.java

      private static final Integer N1 = 1;
      private static final Integer N2 = 2;
      private static final Integer NODE_NOT_IN_GRAPH = 1000;
      private static final String E11 = "1-1";
      private static final String E11_A = "1-1a";
      private static final String E12 = "1-2";
      private static final String E12_A = "1-2a";
      private static final String E21 = "2-1";
      private static final String E23 = "2-3";
    
      @Parameters
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/FormBodyTest.kt

        assertThat(formEncode(23)).isEqualTo("%17")
        assertThat(formEncode(24)).isEqualTo("%18")
        assertThat(formEncode(25)).isEqualTo("%19")
        assertThat(formEncode(26)).isEqualTo("%1A")
        assertThat(formEncode(27)).isEqualTo("%1B")
        assertThat(formEncode(28)).isEqualTo("%1C")
        assertThat(formEncode(29)).isEqualTo("%1D")
        assertThat(formEncode(30)).isEqualTo("%1E")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/netbios/UniAddressTest.java

            }
    
            @ParameterizedTest(name = "should return false for invalid IP address or hostname: {0}")
            @ValueSource(strings = { "192.168.1", "hostname", "1.2.3.4.5", "192.168.1.1a", "a.b.c.d" })
            void shouldReturnFalseForInvalidIpAddressesOrHostnames(String input) {
                assertFalse(UniAddress.isDotQuadIP(input));
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/util/HexdumpTest.java

            assertTrue(output.contains(" 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F"));
            // Verify second line contains bytes 16-31
            assertTrue(output.contains(" 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F"));
        }
    
        @Test
        @DisplayName("Should handle control characters in hexdump")
        void testHexdumpControlCharacters() {
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/graph/GraphsTest.java

      private static final Integer N2 = 2;
      private static final Integer N3 = 3;
      private static final Integer N4 = 4;
      private static final String E11 = "1-1";
      private static final String E11_A = "1-1a";
      private static final String E12 = "1-2";
      private static final String E12_A = "1-2a";
      private static final String E12_B = "1-2b";
      private static final String E21 = "2-1";
      private static final String E13 = "1-3";
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java

      static final Integer N3 = 3;
      static final Integer N4 = 4;
      static final Integer N5 = 5;
      static final Integer NODE_NOT_IN_GRAPH = 1000;
    
      static final String E11 = "1-1";
      static final String E11_A = "1-1a";
      static final String E12 = "1-2";
      static final String E12_A = "1-2a";
      static final String E12_B = "1-2b";
      static final String E21 = "2-1";
      static final String E13 = "1-3";
      static final String E14 = "1-4";
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top