Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 651 for 12e34 (0.04 sec)

  1. src/cmd/asm/internal/lex/lex_test.go

    		"",
    	},
    	{
    		"simple",
    		"1 (a)",
    		"1.(.a.)",
    	},
    	{
    		"simple define",
    		lines(
    			"#define A 1234",
    			"A",
    		),
    		"1234.\n",
    	},
    	{
    		"define without value",
    		"#define A",
    		"",
    	},
    	{
    		"macro without arguments",
    		"#define A() 1234\n" + "A()\n",
    		"1234.\n",
    	},
    	{
    		"macro with just parens as body",
    		"#define A () \n" + "A\n",
    		"(.).\n",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy_test.go

    					ObjectMeta: metav1.ObjectMeta{Namespace: "one", Name: "alfa"},
    					Spec: v1.ServiceSpec{
    						Type:      v1.ServiceTypeClusterIP,
    						ClusterIP: "hit",
    						Ports: []v1.ServicePort{
    							{Port: 1234, TargetPort: intstr.FromInt32(1234)},
    						},
    					},
    				},
    			},
    			endpoints: matchingEndpoints,
    
    			clusterMode:  expectation{error: true},
    			endpointMode: expectation{error: true},
    		},
    		{
    			name: "cluster ip",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/strict/testdata/invalid_duplicate_field_kubeletcfg.yaml

    apiVersion: kubelet.config.k8s.io/v1beta1
    kind: KubeletConfiguration
    address: 1.2.3.4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 16 00:21:31 UTC 2018
    - 103 bytes
    - Viewed (0)
  4. pkg/kube/inject/app_probe_test.go

    						LivenessProbe: &corev1.Probe{
    							ProbeHandler: corev1.ProbeHandler{
    								GRPC: &corev1.GRPCAction{
    									Port: 1234,
    								},
    							},
    						},
    					},
    				},
    			}},
    			expected: `
    {
        "/app-health/foo/livez": {
            "grpc": {
                "port": 1234,
                "service": null
            }
        }
    }`,
    		},
    		{
    			name: "gRPC readiness probe with service",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. test/fixedbugs/bug084.go

    package main
    
    type Service struct {
    	rpc [2]int
    }
    
    func (s *Service) Serve(a int64) {
    	if a != 1234 {
    		print(a, " not 1234\n")
    		panic("fail")
    	}
    }
    
    var arith Service
    
    func main() {
    	c := make(chan string)
    	a := new(Service)
    	go a.Serve(1234)
    	_ = c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 421 bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/endpoint_test.go

    			hostport:     "cp.k8s.io:1234",
    			expectedHost: "cp.k8s.io",
    			expectedPort: "1234",
    		},
    		{
    			name:         "valid ip4",
    			hostport:     "1.2.3.4",
    			expectedHost: "1.2.3.4",
    			expectedPort: "",
    		},
    		{
    			name:         "valid ipv4:port",
    			hostport:     "1.2.3.4:1234",
    			expectedHost: "1.2.3.4",
    			expectedPort: "1234",
    		},
    		{
    			name:         "valid ipv6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 03:19:26 UTC 2019
    - 10K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        assertEquals("::102:304", InetAddresses.toAddrString(InetAddresses.forString("::1.2.3.4")));
      }
    
      public void testToUriStringIPv4() {
        String ipStr = "1.2.3.4";
        InetAddress ip = InetAddresses.forString(ipStr);
        assertEquals("1.2.3.4", InetAddresses.toUriString(ip));
      }
    
      public void testToUriStringIPv6() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. pkg/kubelet/network/dns/dns_test.go

    		{"#comment\nnameserver 1.2.3.4\nsearch", []string{"1.2.3.4"}, []string{}, []string{}, false}, // nameserver specified and search empty
    		{"nameserver 1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    		{" nameserver 1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    		{"\tnameserver 1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. 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)
  10. pkg/proxy/ipvs/util/ipvs_test.go

    			reason: "Port not equal",
    		},
    		{
    			svcA: &VirtualServer{
    				Address:   netutils.ParseIPSloppy("1.2.3.4"),
    				Protocol:  "TCP",
    				Port:      80,
    				Scheduler: "rr",
    				Flags:     0,
    				Timeout:   0,
    			},
    			svcB: &VirtualServer{
    				Address:   netutils.ParseIPSloppy("1.2.3.4"),
    				Protocol:  "TCP",
    				Port:      80,
    				Scheduler: "wlc",
    				Flags:     0,
    				Timeout:   0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top