Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Implementation (0.3 sec)

  1. cmd/object-handlers.go

    			w.Header()[header] = []string{strings.Join(v, ",")}
    		}
    	}
    }
    
    // SelectObjectContentHandler - GET Object?select
    // ----------
    // This implementation of the GET operation retrieves object content based
    // on an SQL expression. In the request, along with the sql expression, you must
    // also specify a data serialization format (JSON, CSV) of the object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	klet.setNodeStatusFuncs = klet.defaultNodeStatusFuncs()
    
    	return klet, nil
    }
    
    type serviceLister interface {
    	List(labels.Selector) ([]*v1.Service, error)
    }
    
    // Kubelet is the main kubelet implementation.
    type Kubelet struct {
    	kubeletConfiguration kubeletconfiginternal.KubeletConfiguration
    
    	// hostname is the hostname the kubelet detected or was given via flag/config
    	hostname string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    			if err := c.Close(); err != nil {
    				base.Fatalf("go: failed to trim cache: %v", err)
    			}
    		}()
    	}
    
    	// Build list of all actions, assigning depth-first post-order priority.
    	// The original implementation here was a true queue
    	// (using a channel) but it had the effect of getting
    	// distracted by low-level leaf actions to the detriment
    	// of completing higher-level actions. The order of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/net/http/server.go

    type ResponseWriter interface {
    	// Header returns the header map that will be sent by
    	// [ResponseWriter.WriteHeader]. The [Header] map also is the mechanism with which
    	// [Handler] implementations can set HTTP trailers.
    	//
    	// Changing the header map after a call to [ResponseWriter.WriteHeader] (or
    	// [ResponseWriter.Write]) has no effect unless the HTTP status code was of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    	return
    }
    
    // Copied from https://github.com/envoyproxy/envoy/blob/5451efd9b8f8a444431197050e45ba974ed4e9d8/source/common/common/utility.cc#L601-L615
    // to ensure we 100% match Envoy's implementation
    func isPrime(x uint64) bool {
    	if x != 0 && x < 4 {
    		return true // eliminates special-casing 2.
    	} else if (x & 1) == 0 {
    		return false // eliminates even numbers >2.
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    		if !ok {
    			// In fact, we could also apply Waiting state here, but it is less informative,
    			// and the container will be restarted soon, so we prefer the original state here.
    			// Note that with the current implementation of ShouldContainerBeRestarted the original state here
    			// could be:
    			//   * Waiting: There is no associated historical container and start failure reason record.
    			//   * Terminated: The container is terminated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		if err != nil {
    			if writeBody && !test.readBody {
    				// This is an acceptable failure due to a possible TCP race:
    				// We were still writing data and the server hung up on us. A TCP
    				// implementation may send a RST if our request body data was known
    				// to be lost, which may trigger our reads to fail.
    				// See RFC 1122 page 88.
    				t.Logf("On test %#v, acceptable error from ReadString: %v", test, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top