Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for lake (0.05 sec)

  1. cluster/gce/util.sh

    function print-windows-node-kubelet-config {
      # Notes:
      # - We don't run any static pods on Windows nodes yet.
    
      # TODO(mtaufen): Does it make any sense to set eviction thresholds for inodes
      # on Windows?
    
      # TODO(pjh, mtaufen): It may make sense to use a different hairpin mode on
      # Windows. We're currently using hairpin-veth, but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    	} else {
    		nodeIP = netutils.ParseIPSloppy(testNodeIPv6)
    	}
    	p := &Proxier{
    		ipFamily:            ipFamily,
    		svcPortMap:          make(proxy.ServicePortMap),
    		serviceChanges:      proxy.NewServiceChangeTracker(newServiceInfo, ipFamily, nil, nil),
    		endpointsMap:        make(proxy.EndpointsMap),
    		endpointsChanges:    proxy.NewEndpointsChangeTracker(testHostname, newEndpointInfo, ipFamily, nil, nil),
    		nftables:            nft,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	}
    	return ret
    }
    
    func (c *claimsTest) run(t *testing.T) {
    	var (
    		signer jose.Signer
    		err    error
    	)
    	if c.signingKey != nil {
    		// Initialize the signer only in the tests that make use of it.  We can
    		// not defer this initialization because the test server uses it too.
    		signer, err = jose.NewSigner(jose.SigningKey{
    			Algorithm: jose.SignatureAlgorithm(c.signingKey.Algorithm),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  4. src/net/http/server.go

    		}
    		if excludeHeader == nil {
    			excludeHeader = make(map[string]bool)
    		}
    		excludeHeader[key] = true
    	}
    	var setHeader extraHeader
    
    	// Don't write out the fake "Trailer:foo" keys. See TrailerPrefix.
    	trailers := false
    	for k := range cw.header {
    		if strings.HasPrefix(k, TrailerPrefix) {
    			if excludeHeader == nil {
    				excludeHeader = make(map[string]bool)
    			}
    			excludeHeader[k] = true
    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. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    }
    
    func objs(val ...interface{}) map[string]interface{} {
    	result := make(map[string]interface{}, len(val))
    	for i, v := range val {
    		result[fmt.Sprintf("val%d", i+1)] = v
    	}
    	return result
    }
    
    func schemas(valSchema ...schema.Structural) *schema.Structural {
    	result := make(map[string]schema.Structural, len(valSchema))
    	for i, v := range valSchema {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    the end.
    
    This operation is useful if you want to add a batch dimension to a single
    element. For example, if you have a single image of shape `[height, width,
    channels]`, you can make it a batch of 1 image with `expand_dims(image, 0)`,
    which will make the shape `[1, height, width, channels]`.
    
    Other examples:
    
    ```
    # 't' is a tensor of shape [2]
    shape(expand_dims(t, 0)) ==> [1, 2]
    shape(expand_dims(t, 1)) ==> [2, 1]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

      static <E> Queue<E> discardingQueue() {
        return (Queue) DISCARDING_QUEUE;
      }
    
      /*
       * Note: All of this duplicate code sucks, but it saves a lot of memory. If only Java had mixins!
       * To maintain this code, make a change for the strong reference type. Then, cut and paste, and
       * replace "Strong" with "Soft" or "Weak" within the pasted text. The primary difference is that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // In fact, UMOD will be translated into UREM instruction, and UREM is originally translated into
    // UDIV and MSUB instructions. But if there is already an identical UDIV instruction just before or
    // after UREM (case like quo, rem := z/y, z%y), then the second UDIV instruction becomes redundant.
    // The purpose of this rule is to have this extra UDIV instruction removed in CSE pass.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	}
    
    	readErrCh := make(chan error, 1)
    	errCh := make(chan error, 2)
    
    	server := newClientServerTest(t, mode, HandlerFunc(func(rw ResponseWriter, req *Request) {
    		go func(body io.Reader) {
    			_, err := body.Read(make([]byte, 100))
    			readErrCh <- err
    		}(req.Body)
    		time.Sleep(500 * time.Millisecond)
    	})).ts
    
    	closeConn := make(chan bool)
    	defer close(closeConn)
    	go func() {
    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