Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 785 for 123x (0.26 sec)

  1. pkg/kube/krt/index_test.go

    			Namespace: "namespace",
    		},
    		Status: corev1.PodStatus{PodIP: "1.2.3.4"},
    	}
    	pc.CreateOrUpdateStatus(pod)
    	tt.WaitUnordered("add/namespace/name")
    	assert.Equal(t, fetchSorted("1.2.3.4"), []SimplePod{{NewNamed(pod), Labeled{}, "1.2.3.4"}})
    
    	pod.Status.PodIP = "1.2.3.5"
    	pc.UpdateStatus(pod)
    	tt.WaitUnordered("update/namespace/name")
    	assert.Equal(t, fetchSorted("1.2.3.4"), []SimplePod{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/slices/slices_test.go

    	{
    		[]int{},
    		[]int{},
    		0,
    	},
    	{
    		[]int{1, 2, 3},
    		[]int{1, 2, 3},
    		0,
    	},
    	{
    		[]int{1, 2, 3},
    		[]int{1, 2, 3, 4},
    		-1,
    	},
    	{
    		[]int{1, 2, 3, 4},
    		[]int{1, 2, 3},
    		+1,
    	},
    	{
    		[]int{1, 2, 3},
    		[]int{1, 4, 3},
    		-1,
    	},
    	{
    		[]int{1, 4, 3},
    		[]int{1, 2, 3},
    		+1,
    	},
    	{
    		[]int{1, 4, 3},
    		[]int{1, 2, 3, 8, 9},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. pkg/kube/krt/join_test.go

    	pod.Status = corev1.PodStatus{PodIP: "1.2.3.4"}
    	pc.UpdateStatus(pod)
    
    	assert.EventuallyEqual(t, fetch, []SimpleEndpoint{
    		{pod.Name, svc.Name, pod.Namespace, "1.2.3.4"},
    		{"name-static", svc.Name, pod.Namespace, "9.9.9.9"},
    	})
    
    	ExtraSimplePods.Set(nil)
    	assert.EventuallyEqual(t, fetch, []SimpleEndpoint{
    		{pod.Name, svc.Name, pod.Namespace, "1.2.3.4"},
    	})
    
    	pod.Status.PodIP = "1.2.3.5"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/util/VersionNumberTest.groovy

            patchScheme.parse("1.2.3") == new VersionNumber(1, 2, 3, null)
            patchScheme.parse("1.2.3.4") == new VersionNumber(1, 2, 3, 4, null)
            patchScheme.parse("1.2.3_4") == new VersionNumber(1, 2, 3, 4, null)
            patchScheme.parse("1.2.3.4-qualifier") == new VersionNumber(1, 2, 3, 4, "qualifier")
            patchScheme.parse("1.2.3.4.qualifier") == new VersionNumber(1, 2, 3, 4, "qualifier")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:54:04 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.23.md

    ## Changelog since v1.23.15
    
    ## Changes by Kind
    
    ### API Change
    
    - Kubernetes 1.23 is now built with go1.19.4. To match behavior of previous Kubernetes 1.23 patch releases:
      - `kube-apiserver` defaults the GOGC setting to 63, to approximate go1.17 garbage collection memory performance in heavily loaded API servers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/syntax/parser_test.go

    		{"//line C:foo:123\n", valid, "C:foo", 123, 0},
    		{"//line /src/a/a.go:123\n   foo", valid, "/src/a/a.go", 123, 0},
    		{"//line :x:1\n", valid, ":x", 1, 0},
    		{"//line foo ::1\n", valid, "foo :", 1, 0},
    		{"//line foo:123abc:1\n", valid, "foo:123abc", 1, 0},
    		{"//line foo :123:1\n", valid, "foo ", 123, 1},
    		{"//line ::123\n", valid, ":", 123, 0},
    
    		// effect of valid //line directives on columns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParserTest.groovy

            "abc.1-3"         | [null, 1, 3]
            "123"             | [123]
            "abc"             | [null]
            "a.b.c.1.2"       | [null, null, null, 1, 2]
            "1b2.1.2.3"       | [1, null, 2, 1, 2, 3]
            "b1-2-3.3"        | [null, 1, 2, 3 ,3]
        }
    
        def parse(String v) {
            return versionParser.transform(v)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. pilot/pkg/model/extensions_test.go

    				Match: []*extensions.WasmPlugin_TrafficSelector{
    					{
    						Mode:  v1beta1.WorkloadMode_SERVER,
    						Ports: []*v1beta1.PortSelector{{Number: 1234}},
    					},
    				},
    			}},
    			proxyLabels: map[string]string{"a": "b", "c": "d"},
    			listenerInfo: WasmPluginListenerInfo{
    				Port:  1234,
    				Class: networking.ListenerClassSidecarInbound,
    			},
    			want: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/util/util_test.go

    			},
    		},
    		{
    			"success case with no PrefixLen",
    			"1.2.3.4",
    			&core.CidrRange{
    				AddressPrefix: "1.2.3.4",
    				PrefixLen: &wrappers.UInt32Value{
    					Value: 32,
    				},
    			},
    		},
    		{
    			"success case with PrefixLen",
    			"1.2.3.4/16",
    			&core.CidrRange{
    				AddressPrefix: "1.2.3.4",
    				PrefixLen: &wrappers.UInt32Value{
    					Value: 16,
    				},
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top