Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 330 for 123a (0.05 sec)

  1. 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)
  2. 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)
  3. pkg/kube/krt/collection_test.go

    	pod.Status = corev1.PodStatus{PodIP: "1.2.3.4"}
    	pc.UpdateStatus(pod)
    	assert.EventuallyEqual(t, fetcherSorted(SimplePods), []SimplePod{{NewNamed(pod), Labeled{}, "1.2.3.4"}})
    
    	pod.Status.PodIP = "1.2.3.5"
    	pc.UpdateStatus(pod)
    	assert.EventuallyEqual(t, fetcherSorted(SimplePods), []SimplePod{{NewNamed(pod), Labeled{}, "1.2.3.5"}})
    
    	// check we get updates if we add a handler later
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top