Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 86 for Implementation (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package server
    
    // This file exists to force the desired plugin implementations to be linked into genericapi pkg.
    import (
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle"
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/events/v1/generated.proto

    // The default event reporter in "k8s.io/client-go/tools/events/event_broadcaster.go" shows
    // how this struct is updated on heartbeats and can guide customized reporter implementations.
    message EventSeries {
      // count is the number of occurrences in this series up to the last heartbeat time.
      optional int32 count = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. pkg/volume/util/hostutil/hostutil.go

    	// GetSELinuxMountContext returns value of -o context=XYZ mount option on
    	// given mount point.
    	GetSELinuxMountContext(pathname string) (string, error)
    }
    
    // Compile-time check to ensure all HostUtil implementations satisfy
    // the Interface.
    var _ HostUtils = &HostUtil{}
    
    // getFileType checks for file/directory/socket and block/character devices.
    func getFileType(pathname string) (FileType, error) {
    	var pathType FileType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    // This file exists to force the desired plugin implementations to be linked.
    // This should probably be part of some configuration fed into the build for a
    // given binary target.
    import (
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. pkg/kubelet/images/types.go

    )
    
    // ImageManager provides an interface to manage the lifecycle of images.
    // Implementations of this interface are expected to deal with pulling (downloading),
    // managing, and deleting container images.
    // Implementations are expected to abstract the underlying runtimes.
    // Implementations are expected to be thread safe.
    type ImageManager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      // validity duration so a client must check the delta between the notBefore and
      // and notAfter fields in the issued certificate to determine the actual duration.
      //
      // The v1.22+ in-tree implementations of the well-known Kubernetes signers will
      // honor this field as long as the requested duration is not greater than the
      // maximum duration they will honor per the --cluster-signing-duration CLI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/util/ipvs.go

    limitations under the License.
    */
    
    package ipvs
    
    import (
    	"net"
    	"strconv"
    	"strings"
    	"time"
    )
    
    // Interface is an injectable interface for running ipvs commands.  Implementations must be goroutine-safe.
    type Interface interface {
    	// Flush clears all virtual servers in system. return occurred error immediately.
    	Flush() error
    	// AddVirtualServer creates the specified virtual server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    	// empty, defaults to GroupVersion.
    	OptionsExternalVersion *schema.GroupVersion
    	// MetaGroupVersion defaults to "meta.k8s.io/v1" and is the scheme group version used to decode
    	// common API implementations like ListOptions. Future changes will allow this to vary by group
    	// version (for when the inevitable meta/v2 group emerges).
    	MetaGroupVersion *schema.GroupVersion
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. pkg/credentialprovider/plugins.go

    	"k8s.io/klog/v2"
    )
    
    // All registered credential providers.
    var providersMutex sync.Mutex
    var providers = make(map[string]DockerConfigProvider)
    
    // RegisterCredentialProvider is called by provider implementations on
    // initialization to register themselves, like so:
    //
    //	func init() {
    //	 	RegisterCredentialProvider("name", &myProvider{...})
    //	}
    func RegisterCredentialProvider(name string, provider DockerConfigProvider) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 22:01:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. pkg/proxy/types.go

    */
    
    package proxy
    
    import (
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/proxy/config"
    )
    
    // Provider is the interface provided by proxier implementations.
    type Provider interface {
    	config.EndpointSliceHandler
    	config.ServiceHandler
    	config.NodeHandler
    	config.ServiceCIDRHandler
    
    	// Sync immediately synchronizes the Provider's current state to proxy rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top