Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. pkg/apis/storage/types.go

    	// a lifecycle that is tied to the lifecycle of the pod. For example, such
    	// a volume might contain data that gets created specifically for that pod,
    	// like secrets.
    	// But how the volume actually gets created and managed is entirely up to
    	// the driver. It might also use reference counting to share the same volume
    	// instance among different pods if the CSIVolumeSource of those pods is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  4. src/runtime/trace.go

    			// because we might stop the G in a window where it's unsafe to write
    			// events based on the G's status. We need the global trace buffer flush
    			// coming up to make sure we're not racing with the G.
    			//
    			// It should be very unlikely that we try to preempt a running G here.
    			// The only situation that we might is that we're racing with a G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K 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. 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)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter.go

    	}
    
    	if isList {
    		// start a deepcopy of the input and fill in the converted objects from the response at the right spots.
    		// The response list might be sparse because objects had the right version already.
    		convertedList := listObj.DeepCopy()
    		convertedIndex := 0
    		for i := range convertedList.Items {
    			original := &convertedList.Items[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:37:55 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top