Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 00401 (0.14 sec)

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

                "000000000001",
                "00000000001",
                "0000000001",
                "000000001",
                "00000001",
                "0000001",
                "000001",
                "00001",
                "0001",
                "001",
                "01",
                "1"
            };
    
            checkVersionsArrayEqual(arr);
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 09 06:39:47 GMT 2024
    - 14K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

     *   <dt>An IPv6 "IPv4 compatible" (or "compat") address, {@code "::192.168.0.1"}.
     *   <dd>{@code 00 00 00 00 00 00 00 00 00 00 00 00 c0 a8 00 01}
     *   <dt>An IPv6 "IPv4 mapped" address, {@code "::ffff:192.168.0.1"}.
     *   <dd>{@code 00 00 00 00 00 00 00 00 00 00 ff ff c0 a8 00 01}
     * </dl>
     *
     * <p>A few notes about IPv6 "IPv4 mapped" addresses and their observed use in Java.
     *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 44K bytes
    - Viewed (1)
  3. guava-tests/test/com/google/common/net/InetAddressesTest.java

                );
        ImmutableSet<String> nonIsatapAddresses =
            ImmutableSet.of(
                "::1.2.3.4",
                "3ffe::1",
                "::",
                "::1",
                "2001:db8::0040:5efe:102:304",
                "2001:db8::5ffe:102:304",
                "2001:db8::5eff:102:304",
                "2001:0:102:203:200:5efe:506:708" // Teredo address; not ISATAP
                );
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 31.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertEquals("010203", StringUtil.toHex(new byte[] { 1, 2, 3 }));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToHex2() throws Exception {
            assertEquals("0001", StringUtil.toHex(1));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testAppendHex() throws Exception {
            final StringBuilder buf = new StringBuilder();
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

                );
        ImmutableSet<String> nonIsatapAddresses =
            ImmutableSet.of(
                "::1.2.3.4",
                "3ffe::1",
                "::",
                "::1",
                "2001:db8::0040:5efe:102:304",
                "2001:db8::5ffe:102:304",
                "2001:db8::5eff:102:304",
                "2001:0:102:203:200:5efe:506:708" // Teredo address; not ISATAP
                );
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 31.9K bytes
    - Viewed (0)
Back to top