Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for 7777 (0.05 sec)

  1. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    								InstanceName:    "instance",
    								CertificateName: "certificate",
    							},
    						},
    					}),
    				},
    			},
    		},
    		{
    			Name: "outbound|7777||custom-tls-addition",
    		},
    		{
    			Name:            "outbound|7777||custom-tls-replacement",
    			DnsLookupFamily: cluster.Cluster_V4_ONLY,
    			LbPolicy:        cluster.Cluster_ROUND_ROBIN,
    			TransportSocket: &core.TransportSocket{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. pkg/controlplane/reconcilers/instancecount_test.go

    			serviceName:   "boo",
    			ip:            "1.2.3.4",
    			endpointPorts: []corev1.EndpointPort{{Name: "boo", Port: 7777, Protocol: "SCTP"}},
    			initialState:  nil,
    			expectCreate:  makeEndpointsArray("boo", []string{"1.2.3.4"}, []corev1.EndpointPort{{Name: "boo", Port: 7777, Protocol: "SCTP"}}),
    		},
    	}
    	for _, test := range reconcileTests {
    		t.Run(test.testName, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:24 UTC 2022
    - 14K bytes
    - Viewed (0)
  3. pkg/proxy/config/config_test.go

    	endpoints1v2 := &discoveryv1.EndpointSlice{
    		ObjectMeta:  metav1.ObjectMeta{Namespace: "testnamespace", Name: "foo"},
    		AddressType: discoveryv1.AddressTypeIPv4,
    		Endpoints: []discoveryv1.Endpoint{{
    			Addresses: []string{"7.7.7.7"},
    		}},
    		Ports: []discoveryv1.EndpointPort{{Port: ptr.To[int32](80)}},
    	}
    	fakeWatch.Modify(endpoints1v2)
    	endpoints = []*discoveryv1.EndpointSlice{endpoints2, endpoints1v2, endpoints3}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/status/server_test.go

    		{
    			probe: `{"/app-health/hello-world/readyz": {"tcpSocket": {"port": 8888}, "httpGet": {"path": "/", "port": 7777}}}`,
    			err:   "must be one of type httpGet, tcpSocket or gRPC",
    		},
    		// probes must be one of tcp, http or gRPC
    		{
    			probe: `{"/app-health/hello-world/readyz": {"grpc": {"port": 8888}, "httpGet": {"path": "/", "port": 7777}}}`,
    			err:   "must be one of type httpGet, tcpSocket or gRPC",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/net_test.go

    					Port: intstr.FromString("foo-2-port"),
    				},
    			},
    		},
    		StartupProbe: &corev1.Probe{
    			ProbeHandler: corev1.ProbeHandler{
    				HTTPGet: &corev1.HTTPGetAction{
    					Port: intstr.FromInt(7777),
    				},
    			},
    		},
    	}
    
    	containers := []corev1.Container{app1}
    
    	var podStatus corev1.PodStatus
    	if v6IP {
    		podStatus = corev1.PodStatus{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. src/encoding/gob/codec_test.go

    	t1.B = new(int)
    	*t1.B = 177
    	t1.C = new(*int)
    	*t1.C = new(int)
    	**t1.C = 1777
    	t1.D = new(**int)
    	*t1.D = new(*int)
    	**t1.D = new(int)
    	***t1.D = 17777
    	b := new(bytes.Buffer)
    	enc := NewEncoder(b)
    	enc.Encode(t1)
    	dec := NewDecoder(b)
    	var t0 T0
    	dec.Decode(&t0)
    	if t0.A != 17 || t0.B != 177 || t0.C != 1777 || t0.D != 17777 {
    		t.Errorf("t1->t0: expected {17 177 1777 17777}; got %v", t0)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  7. src/runtime/sigtab_aix.go

    	72:          {_SigNotify, "signal 72"},
    	73:          {_SigNotify, "signal 73"},
    	74:          {_SigNotify, "signal 74"},
    	75:          {_SigNotify, "signal 75"},
    	76:          {_SigNotify, "signal 76"},
    	77:          {_SigNotify, "signal 77"},
    	78:          {_SigNotify, "signal 78"},
    	79:          {_SigNotify, "signal 79"},
    	80:          {_SigNotify, "signal 80"},
    	81:          {_SigNotify, "signal 81"},
    	82:          {_SigNotify, "signal 82"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 20:58:16 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  8. src/os/removeall_test.go

    		if err := Mkdir(filepath.Join(tempDir, dir), 0777); err != nil {
    			t.Fatal(err)
    		}
    	}
    	for _, dir := range readonly {
    		d := filepath.Join(tempDir, dir)
    		if err := Chmod(d, 0555); err != nil {
    			t.Fatal(err)
    		}
    
    		// Defer changing the mode back so that the deferred
    		// RemoveAll(tempDir) can succeed.
    		defer Chmod(d, 0777)
    	}
    
    	err := RemoveAll(tempDir)
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. pkg/apis/core/fuzzer/fuzzer.go

    			s.DefaultMode = &mode
    		},
    		func(cm *core.ConfigMapVolumeSource, c fuzz.Continue) {
    			c.FuzzNoCustom(cm) // fuzz self without calling this function again
    
    			if c.RandBool() {
    				opt := c.RandBool()
    				cm.Optional = &opt
    			}
    			// DefaultMode should always be set, it has a default
    			// value and it is expected to be between 0 and 0777
    			var mode int32
    			c.Fuzz(&mode)
    			mode &= 0777
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. src/cmd/covdata/tool_test.go

    	// Create subdirs.
    	subdir := filepath.Join(dir, prog+"dir"+tag)
    	if err := os.Mkdir(subdir, 0777); err != nil {
    		t.Fatalf("can't create outdir %s: %v", subdir, err)
    	}
    	depdir := filepath.Join(subdir, "dep")
    	if err := os.Mkdir(depdir, 0777); err != nil {
    		t.Fatalf("can't create outdir %s: %v", depdir, err)
    	}
    
    	// Emit program.
    	insrc := filepath.Join("testdata", prog+".go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top