Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 393 for Implementation (0.26 sec)

  1. pkg/apis/core/types.go

    	// but should apply for any default implementation. If set, it is assumed that a load balancer
    	// implementation is watching for Services with a matching class. Any default load balancer
    	// implementation (e.g. cloud providers) should ignore Services that set this field.
    	// This field can only be set when creating or updating a Service to type 'LoadBalancer'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// current version of the object to avoid read operation from storage to get it.
    	// However, the implementations have to retry in case suggestion is stale.
    	//
    	// Example:
    	//
    	// s := /* implementation of Interface */
    	// err := s.GuaranteedUpdate(
    	//     "myKey", &MyType{}, true, preconditions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2beta1/types_swagger_doc_generated.go

    */
    
    package v2beta1
    
    // This file contains a collection of methods that can be used from go-restful to
    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    // error format.
    type ErrorResponder interface {
    	Error(w http.ResponseWriter, req *http.Request, err error)
    }
    
    // SimpleErrorResponder is the legacy implementation of ErrorResponder for callers that only
    // service a single request/response per proxy.
    type SimpleErrorResponder interface {
    	Error(err error)
    }
    
    func NewErrorResponder(r SimpleErrorResponder) ErrorResponder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. pkg/scheduler/testing/framework/fake_extender.go

    ) (map[string]*extenderv1.Victims, error) {
    	nodeNameToVictimsCopy := map[string]*extenderv1.Victims{}
    	// We don't want to change the original nodeNameToVictims
    	for k, v := range nodeNameToVictims {
    		// In real world implementation, extender's user should have their own way to get node object
    		// by name if needed (e.g. query kube-apiserver etc).
    		//
    		// For test purpose, we just use node from parameters directly.
    		nodeNameToVictimsCopy[k] = v
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_executor.go

    type VolumeLogger interface {
    	// Creates a detailed msg that can be used in logs
    	// The msg format follows the pattern "<prefixMsg> <volume details> <suffixMsg>",
    	// where each implementation provides the volume details
    	GenerateMsgDetailed(prefixMsg, suffixMsg string) (detailedMsg string)
    
    	// Creates a detailed error that can be used in logs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    */
    
    package v1
    
    // This file contains a collection of methods that can be used from go-restful to
    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  9. pkg/scheduler/scheduler_test.go

    				}
    			}
    		})
    	}
    }
    
    var _ framework.QueueSortPlugin = &fakeQueueSortPlugin{}
    
    // fakeQueueSortPlugin is a no-op implementation for QueueSort extension point.
    type fakeQueueSortPlugin struct{}
    
    func (pl *fakeQueueSortPlugin) Name() string {
    	return queueSort
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1/types_swagger_doc_generated.go

    */
    
    package v1
    
    // This file contains a collection of methods that can be used from go-restful to
    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 21.7K bytes
    - Viewed (0)
Back to top