Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 99 for 33333 (0.08 sec)

  1. test/fixedbugs/bug027.go

    	v.elem[v.nelem] = e
    	v.nelem++
    }
    
    func main() {
    	type I struct{ val int }
    	i0 := new(I)
    	i0.val = 0
    	i1 := new(I)
    	i1.val = 11
    	i2 := new(I)
    	i2.val = 222
    	i3 := new(I)
    	i3.val = 3333
    	i4 := new(I)
    	i4.val = 44444
    	v := New()
    	r := "hi\n"
    	v.Insert(i4)
    	v.Insert(i3)
    	v.Insert(i2)
    	v.Insert(i1)
    	v.Insert(i0)
    	for i := 0; i < v.nelem; i++ {
    		var x *I
    		x = v.At(i).(*I)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 1.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/apiclient/wait_test.go

    					ExtraArgs: []kubeadmapi.Arg{
    						{Name: "secure-port", Value: "2222"},
    					},
    				},
    				Scheduler: kubeadmapi.ControlPlaneComponent{
    					ExtraArgs: []kubeadmapi.Arg{
    						{Name: "secure-port", Value: "3333"},
    					},
    				},
    			},
    			expected: []controlPlaneComponent{
    				{name: "kube-apiserver", url: "https://127.0.0.1:1111/healthz"},
    				{name: "kube-controller-manager", url: "https://127.0.0.1:2222/healthz"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/cycles5a.go

    	assert(unsafe.Sizeof(x2) == 8)
    }
    
    func h() [h /* ERROR "no value" */ ()[0]]int { panic(0) }
    
    var c14 /* ERROR "cycle" */ T14
    type T14 [uintptr(unsafe.Sizeof(&c14))]byte
    
    // issue #34333
    type T15 /* ERROR "invalid recursive type T15" */ struct {
    	f func() T16
    	b T16
    }
    
    type T16 struct {
    	T15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/cycles5.go

    	assert(unsafe.Sizeof(x2) == 8)
    }
    
    func h() [h /* ERROR "no value" */ ()[0]]int { panic(0) }
    
    var c14 /* ERROR "cycle" */ T14
    type T14 [uintptr(unsafe.Sizeof(&c14))]byte
    
    // issue #34333
    type T15 /* ERROR "invalid recursive type T15" */ struct {
    	f func() T16
    	b T16
    }
    
    type T16 struct {
    	T15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. docs/en/docs/img/deployment/https/https03.drawio

                        <mxGeometry x="530" y="545" width="270" height="70" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  6. docs/en/docs/img/deployment/https/https04.drawio

                        <mxGeometry x="530" y="545" width="270" height="70" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 14K bytes
    - Viewed (0)
  7. pkg/kubelet/certificate/kubelet_test.go

    				{Type: v1.NodeExternalIP, Address: "1.1.1.1"},
    				{Type: v1.NodeInternalIP, Address: "3.3.3.3"},
    			},
    			wantDNSNames: []string{"hostname-1", "hostname-2", "hostname-3"},
    			wantIPs:      []net.IP{netutils.ParseIPSloppy("1.1.1.1"), netutils.ParseIPSloppy("2.2.2.2"), netutils.ParseIPSloppy("3.3.3.3")},
    		},
    		{
    			name: "handle IP and DNS hostnames",
    			addresses: []v1.NodeAddress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:40 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/quantization.mlir

    // CHECK-NEXT:        scale: [ 0.007812 ],
    // CHECK-NEXT:        zero_point: [ 128 ]
    // CHECK-NEXT:      },
    // CHECK-NEXT:      has_rank: true
    // CHECK-NEXT:    }, {
    // CHECK-NEXT:      shape: [ 32, 3, 3, 3 ],
    // CHECK-NEXT:      type: UINT8,
    // CHECK-NEXT:      buffer: 4,
    // CHECK-NEXT:      name: "tfl.pseudo_qconst",
    // CHECK-NEXT:      quantization: {
    // CHECK-NEXT:        scale: [ 0.021827 ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 11.9K bytes
    - Viewed (0)
  9. pilot/pkg/xds/mesh_network_test.go

    				Ports: []corev1.ServicePort{{Port: 15443, Protocol: corev1.ProtocolTCP}},
    			},
    			Status: corev1.ServiceStatus{
    				LoadBalancer: corev1.LoadBalancerStatus{Ingress: []corev1.LoadBalancerIngress{{IP: "3.3.3.3"}}},
    			},
    		}, metav1.CreateOptions{})
    		if err != nil {
    			t.Fatal(err)
    		}
    		if err := retry.Until(func() bool {
    			return len(s.PushContext().NetworkManager().GatewaysForNetwork("network-1")) == 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  10. test/codegen/switch.go

    	case "ffffff":
    		return 6
    	case "ggggggg":
    		return 7
    	case "hhhhhhhh":
    		return 8
    	default:
    		return len(x)
    	}
    }
    
    // Use single-byte ordered comparisons for binary searching strings.
    // See issue 53333.
    func mimetype(ext string) string {
    	// amd64: `CMPB\s1\(.*\), \$104$`,-`cmpstring`
    	// arm64: `MOVB\s1\(R.*\), R.*$`, `CMPW\s\$104, R.*$`, -`cmpstring`
    	switch ext {
    	// amd64: `CMPL\s\(.*\), \$1836345390$`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:39:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top