Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for name (0.14 sec)

  1. istioctl/pkg/util/handlers/handlers.go

    	kubelib "istio.io/istio/pkg/kube"
    )
    
    // InferPodInfo Uses name to infer namespace if the passed name contains namespace information.
    // Otherwise uses the namespace value passed into the function
    func InferPodInfo(name, defaultNS string) (string, string) {
    	return inferNsInfo(name, defaultNS)
    }
    
    // inferNsInfo Uses name to infer namespace if the passed name contains namespace information.
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 06 15:01:41 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  2. internal/grid/handlers.go

    	_, err = r.UnmarshalMsg(res)
    	if err != nil {
    		h.PutResponse(r)
    		return resp, err
    	}
    	return r, err
    }
    
    // RemoteClient contains information about the caller.
    type RemoteClient struct {
    	Name string
    }
    
    type (
    	ctxCallerKey   = struct{}
    	ctxSubrouteKey = struct{}
    )
    
    // GetCaller returns caller information from contexts provided to handlers.
    func GetCaller(ctx context.Context) *RemoteClient {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 26.9K bytes
    - Viewed (0)
Back to top