Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 390 for 123a (0.12 sec)

  1. src/fmt/fmt_test.go

    	{"%e", 1.0, "1.000000e+00"},
    	{"%e", 1234.5678e3, "1.234568e+06"},
    	{"%e", 1234.5678e-8, "1.234568e-05"},
    	{"%e", -7.0, "-7.000000e+00"},
    	{"%e", -1e-9, "-1.000000e-09"},
    	{"%f", 1234.5678e3, "1234567.800000"},
    	{"%f", 1234.5678e-8, "0.000012"},
    	{"%f", -7.0, "-7.000000"},
    	{"%f", -1e-9, "-0.000000"},
    	{"%g", 1234.5678e3, "1.2345678e+06"},
    	{"%g", float32(1234.5678e3), "1.2345678e+06"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K 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. 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)
  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. 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)
  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