Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 395 for Implementation (0.18 sec)

  1. pkg/scheduler/testing/framework/fake_listers.go

    		namespace: namespace,
    	}
    }
    
    // List returns v1.ServiceList, the list of all services.
    func (f ServiceLister) List(labels.Selector) ([]*v1.Service, error) {
    	return f, nil
    }
    
    // serviceNamespaceLister is implementation of ServiceNamespaceLister returned by Services() above.
    type serviceNamespaceLister struct {
    	services  []*v1.Service
    	namespace string
    }
    
    func (f *serviceNamespaceLister) Get(name string) (*v1.Service, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/workflow/phase.go

    limitations under the License.
    */
    
    package workflow
    
    import (
    	"github.com/spf13/cobra"
    	"github.com/spf13/pflag"
    )
    
    // Phase provides an implementation of a workflow phase that allows
    // creation of new phases by simply instantiating a variable of this type.
    type Phase struct {
    	// name of the phase.
    	// Phase name should be unique among peer phases (phases belonging to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storagemigration/v1alpha1/types_swagger_doc_generated.go

    */
    
    package v1alpha1
    
    // 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: Fri Mar 08 04:18:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/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: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/cr_client.go

    	if config.UserAgent == "" {
    		config.UserAgent = rest.DefaultKubernetesUserAgent()
    	}
    
    	return nil
    }
    
    // RESTClient returns a RESTClient that is used to communicate
    // with API server by this client implementation.
    func (c *CrV1Client) RESTClient() rest.Interface {
    	if c == nil {
    		return nil
    	}
    	return c.restClient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 04:39:39 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. pkg/proxy/util/nfacct/handler.go

    type request interface {
    	Serialize() []byte
    	AddData(data nl.NetlinkRequestData)
    	AddRawData(data []byte)
    	Execute(sockType int, resType uint16) ([][]byte, error)
    }
    
    // netlinkHandler is an implementation of the handler interface. It maintains a netlink socket
    // for communication with the NFAcct subsystem.
    type netlinkHandler struct {
    	socket *nl.NetlinkSocket
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/interfaces.go

    	// selectors, namespace selectors to help the dispatcher decide when to apply
    	// the hook.
    	//
    	// Methods of matching logic is applied are specific to the hook and left up
    	// to the implementation.
    }
    
    // Source can list dynamic admission plugins.
    type Source[H Hook] interface {
    	// Hooks returns the list of currently known admission hooks.
    	Hooks() []H
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/ipset/testing/fake.go

    limitations under the License.
    */
    
    package testing
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/kubernetes/pkg/proxy/ipvs/ipset"
    )
    
    // FakeIPSet is a no-op implementation of ipset Interface
    type FakeIPSet struct {
    	// version of ipset util
    	Version string
    	// The key of Sets map is the ip set name
    	Sets map[string]*ipset.IPSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. pkg/registry/certificates/clustertrustbundle/strategy.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package clustertrustbundle provides Registry interface and its RESTStorage
    // implementation for storing ClusterTrustBundle objects.
    package clustertrustbundle // import "k8s.io/kubernetes/pkg/registry/certificates/clustertrustbundle"
    
    import (
    	"context"
    
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1alpha1/types_swagger_doc_generated.go

    */
    
    package v1alpha1
    
    // 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: Wed Mar 08 23:42:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top