Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 145 for Implementation (0.22 sec)

  1. 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)
  2. pkg/scheduler/internal/cache/cache.go

    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/metrics"
    )
    
    var (
    	cleanAssumedPeriod = 1 * time.Second
    )
    
    // New returns a Cache implementation.
    // It automatically starts a go routine that manages expiration of assumed pods.
    // "ttl" is how long the assumed pod will get expired.
    // "ctx" is the context that would close the background goroutine.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  3. 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)
  4. hack/update-codegen.sh

              // 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_getters.go

    	}
    	return nil, false
    }
    
    // GetHostname Returns the hostname as the kubelet sees it.
    func (kl *Kubelet) GetHostname() string {
    	return kl.hostname
    }
    
    // getRuntime returns the current Runtime implementation in use by the kubelet.
    func (kl *Kubelet) getRuntime() kubecontainer.Runtime {
    	return kl.containerRuntime
    }
    
    // GetNode returns the node info for the configured node name of this Kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. 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)
  7. pkg/kubelet/cm/memorymanager/policy_static.go

    )
    
    const policyTypeStatic policyType = "Static"
    
    type systemReservedMemory map[int]map[v1.ResourceName]uint64
    type reusableMemory map[string]map[string]map[v1.ResourceName]uint64
    
    // staticPolicy is implementation of the policy interface for the static policy
    type staticPolicy struct {
    	// machineInfo contains machine memory related information
    	machineInfo *cadvisorapi.MachineInfo
    	// reserved contains memory that reserved for kube
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    */
    
    package v2
    
    // 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 Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  10. plugin/pkg/admission/limitranger/admission.go

    	}
    
    	return nil
    }
    
    // DefaultLimitRangerActions is the default implementation of LimitRangerActions.
    type DefaultLimitRangerActions struct{}
    
    // ensure DefaultLimitRangerActions implements the LimitRangerActions interface.
    var _ LimitRangerActions = &DefaultLimitRangerActions{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
Back to top