Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for untaint (0.11 sec)

  1. pkg/apis/core/zz_generated.deepcopy.go

    func (in *Taint) DeepCopyInto(out *Taint) {
    	*out = *in
    	if in.TimeAdded != nil {
    		in, out := &in.TimeAdded, &out.TimeAdded
    		*out = (*in).DeepCopy()
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Taint.
    func (in *Taint) DeepCopy() *Taint {
    	if in == nil {
    		return nil
    	}
    	out := new(Taint)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *Taint) DeepCopyInto(out *Taint) {
    	*out = *in
    	if in.TimeAdded != nil {
    		in, out := &in.TimeAdded, &out.TimeAdded
    		*out = (*in).DeepCopy()
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Taint.
    func (in *Taint) DeepCopy() *Taint {
    	if in == nil {
    		return nil
    	}
    	out := new(Taint)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	certDirectory string,
    	rootDirectory string,
    	podLogsDirectory string,
    	imageCredentialProviderConfigFile string,
    	imageCredentialProviderBinDir string,
    	registerNode bool,
    	registerWithTaints []v1.Taint,
    	allowedUnsafeSysctls []string,
    	experimentalMounterPath string,
    	kernelMemcgNotification bool,
    	experimentalNodeAllocatableIgnoreEvictionThreshold bool,
    	minimumGCAge metav1.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    		crOptions,
    		"hostname",
    		false,
    		"hostname",
    		[]net.IP{},
    		"",
    		"external",
    		"/tmp/cert",
    		"/tmp/rootdir",
    		tempDir,
    		"",
    		"",
    		false,
    		[]v1.Taint{},
    		[]string{},
    		"",
    		false,
    		false,
    		metav1.Duration{Duration: time.Minute},
    		1024,
    		110,
    		true,
    		map[string]string{},
    		1024,
    		false,
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top