Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 785 for 123x (0.08 sec)

  1. src/regexp/exec_test.go

    // in the open source RE2 distribution https://github.com/google/re2/.
    //
    // The test file format is a sequence of stanzas like:
    //
    //	strings
    //	"abc"
    //	"123x"
    //	regexps
    //	"[a-z]+"
    //	0-3;0-3
    //	-;-
    //	"([0-9])([0-9])([0-9])"
    //	-;-
    //	-;0-3 0-1 1-2 2-3
    //
    // The stanza begins by defining a set of strings, quoted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. fuzzing/fuzzingserver-expected.txt

    "12.2.8 UNIMPLEMENTED"
    "12.2.9 UNIMPLEMENTED"
    "12.3.1 UNIMPLEMENTED"
    "12.3.10 UNIMPLEMENTED"
    "12.3.11 UNIMPLEMENTED"
    "12.3.12 UNIMPLEMENTED"
    "12.3.13 UNIMPLEMENTED"
    "12.3.14 UNIMPLEMENTED"
    "12.3.15 UNIMPLEMENTED"
    "12.3.16 UNIMPLEMENTED"
    "12.3.17 UNIMPLEMENTED"
    "12.3.18 UNIMPLEMENTED"
    "12.3.2 UNIMPLEMENTED"
    "12.3.3 UNIMPLEMENTED"
    "12.3.4 UNIMPLEMENTED"
    "12.3.5 UNIMPLEMENTED"
    "12.3.6 UNIMPLEMENTED"
    "12.3.7 UNIMPLEMENTED"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 6.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        testRotate(new byte[] {1, 2, 3}, -4, new byte[] {2, 3, 1});
        testRotate(new byte[] {1, 2, 3}, -3, new byte[] {1, 2, 3});
        testRotate(new byte[] {1, 2, 3}, -2, new byte[] {3, 1, 2});
        testRotate(new byte[] {1, 2, 3}, -1, new byte[] {2, 3, 1});
        testRotate(new byte[] {1, 2, 3}, 0, new byte[] {1, 2, 3});
        testRotate(new byte[] {1, 2, 3}, 1, new byte[] {3, 1, 2});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        testRotate(new char[] {'1', '2', '3'}, 0, new char[] {'1', '2', '3'});
        testRotate(new char[] {'1', '2', '3'}, 1, new char[] {'3', '1', '2'});
        testRotate(new char[] {'1', '2', '3'}, 2, new char[] {'2', '3', '1'});
        testRotate(new char[] {'1', '2', '3'}, 3, new char[] {'1', '2', '3'});
        testRotate(new char[] {'1', '2', '3'}, 4, new char[] {'3', '1', '2'});
        testRotate(new char[] {'1', '2', '3'}, 5, new char[] {'2', '3', '1'});
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. pkg/api/v1/endpoints/util_test.go

    				Ports:     []v1.EndpointPort{{Port: 222}},
    			}, {
    				Addresses: []v1.EndpointAddress{{IP: "1.2.3.6"}},
    				Ports:     []v1.EndpointPort{{Port: 111}},
    			}, {
    				Addresses: []v1.EndpointAddress{{IP: "1.2.3.5"}},
    				Ports:     []v1.EndpointPort{{Port: 333}},
    			}},
    			expect: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "1.2.3.4"}, {IP: "1.2.3.6"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2, 3}, -4, new short[] {2, 3, 1});
        testRotate(new short[] {1, 2, 3}, -3, new short[] {1, 2, 3});
        testRotate(new short[] {1, 2, 3}, -2, new short[] {3, 1, 2});
        testRotate(new short[] {1, 2, 3}, -1, new short[] {2, 3, 1});
        testRotate(new short[] {1, 2, 3}, 0, new short[] {1, 2, 3});
        testRotate(new short[] {1, 2, 3}, 1, new short[] {3, 1, 2});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/FileLocationTest.java

                  SmbResource c = new SmbFile(p, "1.2.3.4") ) {
                SmbResourceLocator fl = c.getLocator();
                assertEquals("1.2.3.4", fl.getServer());
                assertEquals(SmbConstants.TYPE_SERVER, fl.getType());
                assertNull(fl.getShare());
                assertEquals("\\", fl.getUNCPath());
                assertEquals("smb://1.2.3.4/", fl.getCanonicalURL());
                assertEquals("/", fl.getURLPath());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 08 13:16:07 UTC 2020
    - 23K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    		buildService("test", "test1", "1.2.3.3", "TCP", 8083),
    		buildService("kubernetes", "test2", "1.2.3.4", "TCP", 8084),
    		buildService("test", "test2", "1.2.3.5", "TCP", 8085),
    		buildService("test", "test2", "None", "TCP", 8085),
    		buildService("test", "test2", "", "TCP", 8085),
    		buildService("not-special", metav1.NamespaceDefault, "1.2.3.8", "TCP", 8088),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. pkg/util/node/node_test.go

    				{Type: v1.NodeInternalIP, Address: "1.2.3.4"},
    			},
    			Preferences: []v1.NodeAddressType{v1.NodeHostName},
    			ExpectErr:   "no preferred addresses found; known addresses: [{InternalIP 1.2.3.4}]",
    		},
    		"found address": {
    			Addresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "1.2.3.4"},
    				{Type: v1.NodeExternalIP, Address: "1.2.3.5"},
    				{Type: v1.NodeExternalIP, Address: "1.2.3.7"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/LongsTest.java

        testRotate(new long[] {1, 2, 3}, -4, new long[] {2, 3, 1});
        testRotate(new long[] {1, 2, 3}, -3, new long[] {1, 2, 3});
        testRotate(new long[] {1, 2, 3}, -2, new long[] {3, 1, 2});
        testRotate(new long[] {1, 2, 3}, -1, new long[] {2, 3, 1});
        testRotate(new long[] {1, 2, 3}, 0, new long[] {1, 2, 3});
        testRotate(new long[] {1, 2, 3}, 1, new long[] {3, 1, 2});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top