Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for name (0.22 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 May 08 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 May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 27.1K bytes
    - Viewed (0)
Back to top