Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 120 for Implementation (0.26 sec)

  1. 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)
  2. pkg/controller/replicaset/replica_set.go

    		},
    		eventBroadcaster,
    	)
    }
    
    // NewBaseController is the implementation of NewReplicaSetController with additional injected
    // parameters so that it can also serve as the implementation of NewReplicationController.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/api/core/v1/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
    - 390.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    func (w *fakeWaiter) WaitForPodToDisappear(podName string) error {
    	return nil
    }
    
    // SetTimeout is a no-op; we don't use it in this implementation
    func (w *fakeWaiter) SetTimeout(_ time.Duration) {}
    
    // WaitForStaticPodControlPlaneHashes returns an error if set from errsToReturn
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    // Actual State of World.
    // This type is used as external representation of attach state (specifically
    // as the return type of GetAttachState only); the state is represented
    // differently in the internal cache implementation.
    type AttachState int
    
    const (
    	// AttachStateAttached represents the state in which the volume is attached to
    	// the node.
    	AttachStateAttached AttachState = iota
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    // form, or don't diff.)
    //
    // This format is intended to make it difficult to use these numbers without
    // writing some sort of special handling code in the hopes that that will
    // cause implementors to also use a fixed point implementation.
    //
    // +protobuf=true
    // +protobuf.embed=string
    // +protobuf.options.marshal=false
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:deepcopy-gen=true
    // +k8s:openapi-gen=true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - QueueingHint implementation for NodeAffinity is reverted because we found potential scenarios where events that make Pods schedulable could be missed. ([#122285](https://github.com/kubernetes/kubernetes/pull/122285), [@sanposhiho](https://github.com/sanposhiho)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. pkg/volume/iscsi/iscsi.go

    	return true
    }
    
    var _ volume.BlockVolumeUnmapper = &iscsiDiskUnmapper{}
    var _ volume.CustomBlockVolumeUnmapper = &iscsiDiskUnmapper{}
    
    // Even though iSCSI plugin has attacher/detacher implementation, iSCSI plugin
    // needs volume detach operation during TearDownDevice(). This method is only
    // chance that operations are done on kubelet node during volume teardown sequences.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. cluster/gce/config-test.sh

    # as an addon daemonset.
    KUBE_PROXY_DISABLE="${KUBE_PROXY_DISABLE:-false}" # true, false
    
    # Optional: Change the kube-proxy implementation. Choices are [iptables, ipvs, nftables].
    KUBE_PROXY_MODE=${KUBE_PROXY_MODE:-iptables}
    
    # Will be passed into the kube-proxy via `--detect-local-mode`
    DETECT_LOCAL_MODE="${DETECT_LOCAL_MODE:-NodeCIDR}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top