Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 784 for 123a (0.04 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. 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/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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top