Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 706 for light (0.76 sec)

  1. pkg/kubelet/cm/dra/manager.go

    		if err != nil {
    			return nil, fmt.Errorf("list resource claims: %v", err)
    		}
    		// The claim name might be nil if no underlying resource claim
    		// was generated for the referenced claim. There are valid use
    		// cases when this might happen, so we simply skip it.
    		if claimName == nil {
    			continue
    		}
    		for _, claim := range container.Resources.Claims {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/transform/transform.go

    			if sz == 1 {
    				// Invalid rune.
    				if !atEOF && !utf8.FullRune(src) {
    					err = ErrShortSrc
    					break
    				}
    				// We replace illegal bytes with RuneError. Not doing so might
    				// otherwise turn a sequence of invalid UTF-8 into valid UTF-8.
    				// The resulting byte sequence may subsequently contain runes
    				// for which t(r) is true that were passed unnoticed.
    				if !t(r) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    }
    
    // TCPTransport provides the information to connect to konnectivity server via TCP
    type TCPTransport struct {
    	// URL is the location of the konnectivity server to connect to.
    	// As an example it might be "https://127.0.0.1:8131"
    	URL string `json:"url,omitempty"`
    
    	// TLSConfig is the config needed to use TLS when connecting to konnectivity server
    	// +optional
    	TLSConfig *TLSConfig `json:"tlsConfig,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    					if len(addedGroups) > 0 {
    						manager.RemoveGroupVersion(addedGroups[0])
    						addedGroups = addedGroups[1:]
    					} else {
    						// Send a request and try to remove a group someone else
    						// might have added
    						_, _, document := fetchPath(manager, "application/json", discoveryPath, "")
    						assert.NotNil(t, document, "manager should always succeed in returning a document")
    
    						if len(document.Items) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/strategy.go

    func (podStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	// skip warnings on pod update, since humans don't typically interact directly with pods,
    	// and we don't want to pay the evaluation cost on what might be a high-frequency update path
    	return nil
    }
    
    // AllowUnconditionalUpdate allows pods to be overwritten
    func (podStrategy) AllowUnconditionalUpdate() bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  6. cmd/common-main.go

    			err = fmt.Errorf("Unable to load TLS certificate '%s,%s': %w", certFile, keyFile, err)
    			bootLogIf(GlobalContext, err, logger.ErrorKind)
    		}
    	}
    	secureConn = true
    
    	// Certs might be symlinks, reload them every 10 seconds.
    	manager.UpdateReloadDuration(10 * time.Second)
    
    	// syscall.SIGHUP to reload the certs.
    	manager.ReloadOnSignal(syscall.SIGHUP)
    
    	return x509Certs, manager, secureConn, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	// Once this grace period elapses, the apiserver will no longer
    	// wait for any active watch request(s) in flight to drain, it will
    	// proceed to the next step in the graceful server shutdown process.
    	// If set to a positive value, the apiserver will keep track of the
    	// number of active watch request(s) in flight and during shutdown
    	// it will wait, at most, for the specified duration and allow these
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/infer.go

    	//
    	// Without substitution we get the (worse) error:
    	//   "type string of s does not match inferred type int for P"
    	// even though the type int was provided (not inferred) for P.
    	//
    	// TODO(gri) We might be able to finesse this in the error message reporting
    	//           (which only happens in case of an error) and then avoid doing
    	//           the substitution (which always happens).
    	if params.Len() > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/module/module.go

    // Because we want the download cache to match the proxy protocol,
    // and because we want the proxy protocol to be possible to serve
    // from a tree of static files (which might be stored on a case-insensitive
    // file system), the proxy protocol must never require two different casings
    // of a URL path either.
    //
    // One possibility would be to make the escaped form be the lowercase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    flag variables. A driver for a single analysis, a, might expose its flag
    f directly on the command line as -f, whereas a driver for multiple
    analyses might prefix the flag name by the analysis name (-a.f) to avoid
    ambiguity. An IDE might expose the flags through a graphical interface,
    and a batch pipeline might configure them from a config file.
    See the "findcall" analyzer for an example of flags in action.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top