Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Machinery (0.11 sec)

  1. OWNERS_ALIASES

        - aojea # Network, Testing
        - danwinship # Network
        - dchen1107 # Node
        - deads2k # API Machinery
        - derekwaynecarr # Node
        - dims # Architecture
        - eddiezane # CLI
        - ehashman # Instrumentation
        - enj # Auth
        - janetkuo # Apps
        - jayunit100 # Windows
        - jpbetz # API Machinery
        - jsafrane # Storage
        - jsturtevant # Windows
        - justinsb # Cluster Lifecycle
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/common.go

    		if err != nil {
    			return nil, err
    		}
    
    		// In order for fakeclient.Discovery().ServerVersion() to return the backing API Server's
    		// real version; we have to do some clever API machinery tricks. First, we get the real
    		// API Server's version
    		realServerVersion, err := dryRunGetter.Client().Discovery().ServerVersion()
    		if err != nil {
    			return nil, errors.Wrap(err, "failed to get server version")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go

    	// by the watch cache and only when certain conditions are met
    	//
    	// for more please read https://github.com/kubernetes/enhancements/tree/master/keps/sig-api-machinery/3157-watch-list
    	hasAnnotation, err := storage.HasInitialEventsEndBookmarkAnnotation(event.Object)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 16:37:25 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

     * </p>
     * <p>
     *     A property's value is not stored in the property itself,
     *     but computed by some {@link ValueSupplier}, which
     *     provides the basic machinery for lazy evaluation.
     * </p>
     *
     * @param <T> the type of the value this property provides
     * @param <S> the type of value supplier that actually provides the value for this property
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    }
    
    // AddConversionFunc registers a function that converts between a and b by passing objects of those
    // types to the provided function. The function *must* accept objects of a and b - this machinery will not enforce
    // any other guarantee.
    func (s *Scheme) AddConversionFunc(a, b interface{}, fn conversion.ConversionFunc) error {
    	return s.converter.RegisterUntypedConversionFunc(a, b, fn)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// Other API servers may support additional authorizer
    	// types like Node, RBAC, ABAC, etc.
    	Type AuthorizerType
    
    	// Name used to describe the webhook
    	// This is explicitly used in monitoring machinery for metrics
    	// Note: Names must be DNS1123 labels like `myauthorizername` or
    	//		 subdomains like `myauthorizer.example.domain`
    	// Required, with no default
    	Name string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    // as the internal version is used less, callers may instead use a defaulting serializer and
    // only convert objects which are shared internally (Status, common API machinery).
    //
    // Mutators can be passed to change the CodecFactoryOptions before construction of the factory.
    // It is recommended to explicitly pass mutators instead of relying on defaults.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  8. cni/README.md

    The ambient CNI agent is the only place where ambient network config and pod redirection machinery happens.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/runtime/signal_windows.go

    	g0 := getg()
    	if g0 == nil || g0.m.curg == nil {
    		// No g available, nothing to do here.
    		return _EXCEPTION_CONTINUE_SEARCH_SEH
    	}
    	// The Windows SEH machinery will unwind the stack until it finds
    	// a frame with a handler for the exception or until the frame is
    	// outside the stack boundaries, in which case it will call the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    	egressToDialer map[EgressType]utilnet.DialFunc
    }
    
    // EgressType is an indicator of which egress selection should be used for sending traffic.
    // See https://github.com/kubernetes/enhancements/blob/master/keps/sig-api-machinery/1281-network-proxy/README.md#network-context
    type EgressType int
    
    const (
    	// ControlPlane is the EgressType for traffic intended to go to the control plane.
    	ControlPlane EgressType = iota
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top