Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for init (0.12 sec)

  1. internal/grid/handlers.go

    				PutByteBuffer(payload)
    				if err != nil {
    					r := RemoteErr(err.Error())
    					return &r
    				}
    			}
    
    			var inT chan Req
    			if h.InCapacity > 0 {
    				// Don't add extra buffering
    				inT = make(chan Req)
    				go func() {
    					defer xioutil.SafeClose(inT)
    					for {
    						select {
    						case <-ctx.Done():
    							return
    						case v, ok := <-in:
    							if !ok {
    								return
    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)
  2. istioctl/pkg/util/handlers/handlers.go

    var getFirstPodFunc func(client corev1client.PodsGetter, namespace string, selector string, timeout time.Duration,
    	sortBy func([]*corev1.Pod) sort.Interface) (*corev1.Pod, int, error)
    
    // InferPodInfoFromTypedResource gets a pod name, from an expression like Deployment/httpbin, or Deployment/productpage-v1.bookinfo
    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)
Back to top