Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 120 for Implementation (0.21 sec)

  1. pkg/kubelet/images/image_gc_manager.go

    	// ImageFsStats returns the stats of the image filesystem.
    	ImageFsStats(ctx context.Context) (*statsapi.FsStats, *statsapi.FsStats, error)
    }
    
    // ImageGCManager is an interface for managing lifecycle of all images.
    // Implementation is thread-safe.
    type ImageGCManager interface {
    	// Applies the garbage collection policy. Errors include being unable to free
    	// enough space as per the garbage collection policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	return s.client.RequestProgress(s.watchContext(ctx))
    }
    
    type objState struct {
    	obj   runtime.Object
    	meta  *storage.ResponseMeta
    	rev   int64
    	data  []byte
    	stale bool
    }
    
    // New returns an etcd3 implementation of storage.Interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    // Evaluator is used to see if quota constraints are satisfied.
    type Evaluator interface {
    	// Evaluate takes an operation and checks to see if quota constraints are satisfied.  It returns an error if they are not.
    	// The default implementation processes related operations in chunks when possible.
    	Evaluate(a admission.Attributes) error
    }
    
    type quotaEvaluator struct {
    	quotaAccessor QuotaAccessor
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    				// where the runtime is still starting up and we request too early.
    				// Give it a little more time.
    				time.Sleep(time.Second * 2)
    				continue
    			}
    			// CRI implementation doesn't support RuntimeConfig, fallback
    			klog.InfoS("CRI implementation should be updated to support RuntimeConfig when KubeletCgroupDriverFromCRI feature gate has been enabled. Falling back to using cgroupDriver from kubelet config.")
    			return nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			// Changing a list to a set should allow you to keep the items the
    			// same, but if you modify any one item the set must be uniqued
    			//
    			// Possibly a future area of improvement. As it stands now,
    			// SSA implementation is incompatible with ratcheting this field:
    			// https://github.com/kubernetes/kubernetes/blob/ec9a8ffb237e391ce9ccc58de93ba4ecc2fabf42/staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/structuredmerge.go#L146-L149
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	BackupEtcdDir() string
    	// CleanupDirs cleans up all temporary directories
    	CleanupDirs() error
    }
    
    // KubeStaticPodPathManager is a real implementation of StaticPodPathManager that is used when upgrading a static pod cluster
    type KubeStaticPodPathManager struct {
    	kubernetesDir     string
    	patchesDir        string
    	realManifestDir   string
    	tempManifestDir   string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. pkg/kubelet/container/runtime.go

    // Thread safety is required from implementations of this interface.
    type Runtime interface {
    	// Type returns the type of the container runtime.
    	Type() string
    
    	// Version returns the version information of the container runtime.
    	Version(ctx context.Context) (Version, error)
    
    	// APIVersion returns the cached API version information of the container
    	// runtime. Implementation is expected to update this cache periodically.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework_test.go

    func newQueueSortPlugin(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    	return &TestQueueSortPlugin{}, nil
    }
    
    // TestQueueSortPlugin is a no-op implementation for QueueSort extension point.
    type TestQueueSortPlugin struct{}
    
    func (pl *TestQueueSortPlugin) Name() string {
    	return queueSortPlugin
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  9. pkg/kubelet/status/status_manager_test.go

    		},
    	}
    }
    
    // After adding reconciliation, if status in pod manager is different from the cached status, a reconciliation
    // will be triggered, which will mess up all the old unit test.
    // To simplify the implementation of unit test, we add testSyncBatch() here, it will make sure the statuses in
    // pod manager the same with cached ones before syncBatch(true) so as to avoid reconciling.
    func (m *manager) testSyncBatch() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/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 Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top