Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 566 for 123x (0.04 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

        testRotate(new double[] {1, 2}, 3, new double[] {2, 1});
    
        testRotate(new double[] {1, 2, 3}, -5, new double[] {3, 1, 2});
        testRotate(new double[] {1, 2, 3}, -4, new double[] {2, 3, 1});
        testRotate(new double[] {1, 2, 3}, -3, new double[] {1, 2, 3});
        testRotate(new double[] {1, 2, 3}, -2, new double[] {3, 1, 2});
        testRotate(new double[] {1, 2, 3}, -1, new double[] {2, 3, 1});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/IntsTest.java

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

        testRotate(new float[] {1, 2, 3}, -4, new float[] {2, 3, 1});
        testRotate(new float[] {1, 2, 3}, -3, new float[] {1, 2, 3});
        testRotate(new float[] {1, 2, 3}, -2, new float[] {3, 1, 2});
        testRotate(new float[] {1, 2, 3}, -1, new float[] {2, 3, 1});
        testRotate(new float[] {1, 2, 3}, 0, new float[] {1, 2, 3});
        testRotate(new float[] {1, 2, 3}, 1, new float[] {3, 1, 2});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top