Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Implementation (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    	ctx, store, _ := testSetup(t)
    	storagetesting.RunTestCount(ctx, t, store)
    }
    
    // =======================================================================
    // Implementation-specific tests are following.
    // The following tests are exercising the details of the implementation
    // not the actual user-facing contract of storage interface.
    // As such, they may focus e.g. on non-functional aspects like performance
    // impact.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. pkg/kubelet/util/manager/watch_based_manager.go

    	return store
    }
    
    func (c *objectCache) newStore() *cacheStore {
    	// TODO: We may consider created a dedicated store keeping just a single
    	// item, instead of using a generic store implementation for this purpose.
    	// However, simple benchmarks show that memory overhead in that case is
    	// decrease from ~600B to ~300B per object. So we are not optimizing it
    	// until we will see a good reason for that.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	// kep: https://kep.k8s.io/2364
    	// alpha: v1.23
    	//
    	// Configures the Kubelet to use the CRI to populate pod and container stats, instead of supplimenting with stats from cAdvisor.
    	// Requires the CRI implementation supports supplying the required stats.
    	PodAndContainerStatsFromCRI featuregate.Feature = "PodAndContainerStatsFromCRI"
    
    	// owner: @ahg-g
    	// alpha: v1.21
    	// beta: v1.22
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/fit.go

    	// preScoreStateKey is the key in CycleState to NodeResourcesFit pre-computed data for Scoring.
    	preScoreStateKey = "PreScore" + Name
    )
    
    // nodeResourceStrategyTypeMap maps strategy to scorer implementation
    var nodeResourceStrategyTypeMap = map[config.ScoringStrategyType]scorer{
    	config.LeastAllocated: func(args *config.NodeResourcesFitArgs) *resourceAllocationScorer {
    		resources := args.ScoringStrategy.Resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_pod_control.go

    }
    
    // StatefulPodControl defines the interface that StatefulSetController uses to create, update, and delete Pods,
    // and to update the Status of a StatefulSet. It follows the design paradigms used for PodControl, but its
    // implementation provides for PVC creation, ordered Pod creation, ordered Pod termination, and Pod identity enforcement.
    // Manipulation of objects is provided through objectMgr, which allows the k8s API to be mocked out for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. 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)
  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/volume/plugins.go

    // for emptiness.  Most attributes of the template will be correct for most
    // plugin implementations.  The following attributes can be overridden per
    // plugin via configuration:
    //
    //  1. pod.Spec.Volumes[0].VolumeSource must be overridden.  Recycler
    //     implementations without a valid VolumeSource will fail.
    //  2. pod.GenerateName helps distinguish recycler pods by name.  Recommended.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  9. cluster/gce/upgrade.sh

      #                 compatible way?
      write-linux-node-env
    
      # TODO(zmerlynn): Get configure-vm script from ${version}. (Must plumb this
      #                 through all create-linux-node-instance-template implementations).
      local template_name
      template_name=$(get-template-name-from-version "${SANITIZED_VERSION}" "${NODE_INSTANCE_PREFIX}")
      create-linux-node-instance-template "${template_name}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top