Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RegisterNode (0.29 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelRegistryInternal.java

    interface ModelRegistryInternal extends ModelRegistry {
        String getProjectPath();
    
        ExtractedRuleSource<?> newRuleSource(Class<? extends RuleSource> rules);
    
        void registerNode(ModelNodeInternal node, Multimap<ModelActionRole, ? extends ModelAction> actions);
    
        <T> void bind(ModelReference<T> subject, ModelActionRole role, ModelAction mutator);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

    memoryThrottlingFactor: 0.9
    nodeLeaseDurationSeconds: 40
    nodeStatusMaxImages: 50
    nodeStatusReportFrequency: 5m0s
    nodeStatusUpdateFrequency: 10s
    oomScoreAdj: -999
    podLogsDir: /var/log/pods
    podPidsLimit: -1
    port: 10250
    registerNode: true
    registryBurst: 10
    registryPullQPS: 5
    resolvConf: /etc/resolv.conf
    runtimeRequestTimeout: 2m0s
    seccompDefault: false
    serializeImagePulls: true
    shutdownGracePeriod: 0s
    shutdownGracePeriodCriticalPods: 0s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/roundtrip/default/v1beta1.yaml

    memoryThrottlingFactor: 0.9
    nodeLeaseDurationSeconds: 40
    nodeStatusMaxImages: 50
    nodeStatusReportFrequency: 5m0s
    nodeStatusUpdateFrequency: 10s
    oomScoreAdj: -999
    podLogsDir: /var/log/pods
    podPidsLimit: -1
    port: 10250
    registerNode: true
    registryBurst: 10
    registryPullQPS: 5
    resolvConf: /etc/resolv.conf
    runtimeRequestTimeout: 2m0s
    seccompDefault: false
    serializeImagePulls: true
    shutdownGracePeriod: 0s
    shutdownGracePeriodCriticalPods: 0s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/v1beta1/defaults.go

    		obj.SeccompDefault = utilpointer.Bool(false)
    	}
    	if obj.MemoryThrottlingFactor == nil {
    		obj.MemoryThrottlingFactor = utilpointer.Float64(DefaultMemoryThrottlingFactor)
    	}
    	if obj.RegisterNode == nil {
    		obj.RegisterNode = utilpointer.Bool(true)
    	}
    	if obj.LocalStorageCapacityIsolation == nil {
    		obj.LocalStorageCapacityIsolation = utilpointer.Bool(true)
    	}
    	if obj.ContainerRuntimeEndpoint == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. pkg/kubemark/hollow_kubelet.go

    	c.ResolverConfig = kubetypes.ResolvConfDefault
    	c.KubeletCgroups = "/kubelet"
    	c.SerializeImagePulls = true
    	c.SystemCgroups = ""
    	c.ProtectKernelDefaults = false
    	c.RegisterWithTaints = opt.RegisterWithTaints
    	c.RegisterNode = true
    	c.LocalStorageCapacityIsolation = true
    	c.PodLogsDir = podLogsPath
    
    	return f, c
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top