Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for 7777 (0.04 sec)

  1. 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)
  2. 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)
  3. src/text/template/exec_test.go

    		"{{$x := 1}}{{if true}}{{$x := 2}}{{if true}}{{$x = 3}}{{end}}{{end}}{{$x}}",
    		"1", tVal, true},
    
    	// Type with String method.
    	{"V{6666}.String()", "-{{.V0}}-", "-<6666>-", tVal, true},
    	{"&V{7777}.String()", "-{{.V1}}-", "-<7777>-", tVal, true},
    	{"(*V)(nil).String()", "-{{.V2}}-", "-nilV-", tVal, true},
    
    	// Type with Error method.
    	{"W{888}.Error()", "-{{.W0}}-", "-[888]-", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		c := httpStaticOverlay.DeepCopy()
    		c.Namespace = "other"
    		se := c.Spec.(*networking.ServiceEntry)
    		se.Endpoints = append(se.Endpoints, &networking.WorkloadEntry{
    			Address: "7.7.7.7",
    			Labels:  map[string]string{"namespace": "bar"},
    		})
    		return &c
    	}()
    
    	// Setup the expected instances for `httpStatic`. This will be added/removed from as we add various configs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    				},
    			},
    			options: printers.GenerateOptions{},
    			// Columns: Name, Type, Cluster-IP, External-IP, Port(s), Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"service2", "LoadBalancer", "1.3.4.5", "<pending>", "80/TCP,8090/UDP,8000/TCP,7777/SCTP", "<unknown>"}}},
    		},
    		// Test load balancer service with multiple ports.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/ts_test.go

    func genAuxMeta(t *testing.T, dstdir string) (string, string) {
    	// Do a GOCOVERDIR=<tmp> go run hello.go
    	src := filepath.Join(dstdir, "hello.go")
    	if err := os.WriteFile(src, []byte(hellogo), 0777); err != nil {
    		t.Fatalf("write failed: %v", err)
    	}
    	args := []string{"run", "-covermode=" + testing.CoverMode(), src}
    	cmd := exec.Command(testenv.GoToolPath(t), args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/cache/default.go

    			base.Fatalf("build cache is required, but could not be located: %v", defaultDirErr)
    		}
    		base.Fatalf("build cache is disabled by GOCACHE=off, but required as of Go 1.12")
    	}
    	if err := os.MkdirAll(dir, 0777); err != nil {
    		base.Fatalf("failed to initialize build cache at %s: %s\n", dir, err)
    	}
    	if _, err := os.Stat(filepath.Join(dir, "README")); err != nil {
    		// Best effort.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/os/user/listgroups_unix_test.go

    	{in: testGroupFile, user: "jody", gid: "34", gids: []string{"34", "777"}},
    	{in: testGroupFile, user: "john", gid: "35", gids: []string{"35", "777"}},
    	{in: testGroupFile, user: "jov", gid: "37", gids: []string{"37", "777"}},
    	{in: testGroupFile, user: "user777", gid: "7", gids: []string{"7", "777", "1000"}},
    	{in: testGroupFile, user: "user1111", gid: "1111", gids: []string{"1111", "1000"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/envcmd/env_test.go

    			scriptfilename = "script.bat"
    		}
    		var cmd *exec.Cmd
    		if runtime.GOOS == "windows" {
    			scriptfile := filepath.Join(t.TempDir(), scriptfilename)
    			if err := os.WriteFile(scriptfile, b.Bytes(), 0777); err != nil {
    				t.Fatal(err)
    			}
    			cmd = testenv.Command(t, "cmd.exe", "/C", scriptfile)
    		} else {
    			cmd = testenv.Command(t, "sh", "-c", b.String())
    		}
    		out, err := cmd.Output()
    		t.Log(string(out))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/os/dir.go

    		if err != nil {
    			return err
    		}
    
    		fpath, err := filepathlite.Localize(path)
    		if err != nil {
    			return err
    		}
    		newPath := joinPath(dir, fpath)
    		if d.IsDir() {
    			return MkdirAll(newPath, 0777)
    		}
    
    		// TODO(panjf2000): handle symlinks with the help of fs.ReadLinkFS
    		// 		once https://go.dev/issue/49580 is done.
    		//		we also need filepathlite.IsLocal from https://go.dev/cl/564295.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top