Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for RegisterNode (1.64 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_test.go

    				EnableDebugFlagsHandler:       utilpointer.Bool(true),
    				SeccompDefault:                utilpointer.Bool(false),
    				MemoryThrottlingFactor:        utilpointer.Float64(DefaultMemoryThrottlingFactor),
    				RegisterNode:                  utilpointer.Bool(true),
    				LocalStorageCapacityIsolation: utilpointer.Bool(true),
    				PodLogsDir:                    DefaultPodLogsDir,
    			},
    		},
    		{
    			"all negative",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. 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)
  6. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    	}
    	out.MemoryThrottlingFactor = (*float64)(unsafe.Pointer(in.MemoryThrottlingFactor))
    	out.RegisterWithTaints = *(*[]corev1.Taint)(unsafe.Pointer(&in.RegisterWithTaints))
    	if err := v1.Convert_Pointer_bool_To_bool(&in.RegisterNode, &out.RegisterNode, s); err != nil {
    		return err
    	}
    	out.Tracing = (*apiv1.TracingConfiguration)(unsafe.Pointer(in.Tracing))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

                    )
                );
            }
            if (links == null) {
                links = new TreeMap<>();
            }
            links.put(child.getPath().getName(), child);
            modelRegistry.registerNode(child, registration.getActions());
        }
    
        @Override
        public void removeLink(String name) {
            if (links!=null && links.remove(name) != null) {
                modelRegistry.remove(getPath().child(name));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/helpers_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/types.go

    	// the kubelet registers itself. This only takes effect when registerNode
    	// is true and upon the initial registration of the node.
    	// +optional
    	RegisterWithTaints []v1.Taint
    	// registerNode enables automatic registration with the apiserver.
    	// +optional
    	RegisterNode bool
    
    	// Tracing specifies the versioned configuration for OpenTelemetry tracing clients.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top