Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Fname (0.14 sec)

  1. pkg/envoy/proxy.go

    }
    
    var HostIP = os.Getenv("HOST_IP")
    
    // readBootstrapToJSON reads a config file, in YAML or JSON, and returns JSON string
    func readBootstrapToJSON(fname string) (string, error) {
    	b, err := os.ReadFile(fname)
    	if err != nil {
    		return "", fmt.Errorf("failed to read file: %s, %v", fname, err)
    	}
    
    	// Replace host with HOST_IP env var if it is "$(HOST_IP)".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/test/kube/dump.go

    						c.Name(), pod.Namespace, pod.Name, container.Name, restarts, prow.ArtifactsURL(fname))
    				}
    				l, err := c.PodLogs(context.TODO(), pod.Name, pod.Namespace, container.Name, true /* previousLog */)
    				if err != nil {
    					scopes.Framework.Warnf("Unable to get previous logs for cluster/pod/container: %s/%s/%s/%s: %v",
    						c.Name(), pod.Namespace, pod.Name, container.Name, err)
    				}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    	testFuncName := runtime.FuncForPC(pc).Name()
    
    	timeoutMsg := "timed out here!"
    
    	tests := []struct {
    		name        string
    		mustTimeout bool
    		wantResp    string
    	}{
    		{
    			name:     "return before timeout",
    			wantResp: "HTTP/1.1 404 Not Found\r\nContent-Length: 0\r\n\r\n",
    		},
    		{
    			name:        "return after timeout",
    			mustTimeout: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    				n = nn.X
    				continue
    			}
    		}
    		break
    	}
    	if n.Op() != ir.ONAME {
    		return false
    	}
    	return s.canSSAName(n.(*ir.Name)) && ssa.CanSSA(n.Type())
    }
    
    func (s *state) canSSAName(name *ir.Name) bool {
    	if name.Addrtaken() || !name.OnStack() {
    		return false
    	}
    	switch name.Class {
    	case ir.PPARAMOUT:
    		if s.hasdefer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. buildscripts/checkdeps.sh

    #!/usr/bin/env bash
    #
    
    _init() {
    
    	shopt -s extglob
    
    	## Minimum required versions for build dependencies
    	GIT_VERSION="1.0"
    	GO_VERSION="1.16"
    	OSX_VERSION="10.8"
    	KNAME=$(uname -s)
    	ARCH=$(uname -m)
    	case "${KNAME}" in
    	SunOS)
    		ARCH=$(isainfo -k)
    		;;
    	esac
    }
    
    ## FIXME:
    ## In OSX, 'readlink -f' option does not exist, hence
    ## we have our own readlink -f behavior here.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/os/user/cgo_lookup_unix.go

    		Username: _C_GoString(_C_pw_name(pwd)),
    		Name:     _C_GoString(_C_pw_gecos(pwd)),
    		HomeDir:  _C_GoString(_C_pw_dir(pwd)),
    	}
    	// The pw_gecos field isn't quite standardized. Some docs
    	// say: "It is expected to be a comma separated list of
    	// personal data where the first item is the full name of the
    	// user."
    	u.Name, _, _ = strings.Cut(u.Name, ",")
    	return u
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. api/go1.23.txt

    pkg archive/tar, type FileInfoNames interface, Gname() (string, error) #50102
    pkg archive/tar, type FileInfoNames interface, IsDir() bool #50102
    pkg archive/tar, type FileInfoNames interface, ModTime() time.Time #50102
    pkg archive/tar, type FileInfoNames interface, Mode() fs.FileMode #50102
    pkg archive/tar, type FileInfoNames interface, Name() string #50102
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    			expectedEnvs: []kubecontainer.EnvVar{
    				{Name: "POD_NAME", Value: "dapi-test-pod-name"},
    				{Name: "POD_NAMESPACE", Value: "downward-api"},
    				{Name: "POD_NODE_NAME", Value: "node-name"},
    				{Name: "POD_SERVICE_ACCOUNT_NAME", Value: "special"},
    				{Name: "POD_IP", Value: "1.2.3.4"},
    				{Name: "POD_IPS", Value: "1.2.3.4,fd00::6"},
    				{Name: "HOST_IP", Value: testKubeletHostIP},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    	for _, cStatus := range containerStatusesCopy {
    		cName := cStatus.Name
    		if _, ok := statuses[cName]; !ok {
    			// This would also ignore the infra container.
    			continue
    		}
    		if containerSeen[cName] >= 2 {
    			continue
    		}
    		var oldStatusPtr *v1.ContainerStatus
    		if oldStatus, ok := oldStatuses[cName]; ok {
    			oldStatusPtr = &oldStatus
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    		}
    	}
    	ports := `
      ports:
      - name: http
        number: 80
        protocol: HTTP
      - name: auto
        number: 81
      - name: tcp
        number: 82
        protocol: TCP
      - name: tls
        number: 83
        protocol: TLS
      - name: https
        number: 84
        protocol: HTTPS
      - name: grpc
        number: 85
        protocol: GRPC
      - name: h2
        number: 86
        protocol: HTTP2`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top