Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for NIL (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/zz_generated.deepcopy.go

    	if in == nil {
    		return nil
    	}
    	out := new(AESConfiguration)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AdmissionConfiguration) DeepCopyInto(out *AdmissionConfiguration) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.Plugins != nil {
    		in, out := &in.Plugins, &out.Plugins
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/zz_generated.deepcopy.go

    func (in *Arg) DeepCopy() *Arg {
    	if in == nil {
    		return nil
    	}
    	out := new(Arg)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *BootstrapTokenDiscovery) DeepCopyInto(out *BootstrapTokenDiscovery) {
    	*out = *in
    	if in.CACertHashes != nil {
    		in, out := &in.CACertHashes, &out.CACertHashes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. src/strconv/atoi_test.go

    	{"", 0, ErrSyntax},
    	{"0", 0, nil},
    	{"-0", 0, nil},
    	{"+0", 0, nil},
    	{"1", 1, nil},
    	{"-1", -1, nil},
    	{"+1", 1, nil},
    	{"12345", 12345, nil},
    	{"-12345", -12345, nil},
    	{"012345", 12345, nil},
    	{"-012345", -12345, nil},
    	{"98765432100", 98765432100, nil},
    	{"-98765432100", -98765432100, nil},
    	{"9223372036854775807", 1<<63 - 1, nil},
    	{"-9223372036854775807", -(1<<63 - 1), nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  4. pkg/securitycontext/accessors.go

    	if w.podSC == nil {
    		return nil
    	}
    	return w.podSC.RunAsUser
    }
    func (w *podSecurityContextWrapper) SetRunAsUser(v *int64) {
    	if w.podSC == nil && v == nil {
    		return
    	}
    	w.ensurePodSC()
    	w.podSC.RunAsUser = v
    }
    func (w *podSecurityContextWrapper) RunAsGroup() *int64 {
    	if w.podSC == nil {
    		return nil
    	}
    	return w.podSC.RunAsGroup
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  5. pkg/apis/networking/v1/zz_generated.conversion.go

    		return Convert_v1_HTTPIngressPath_To_networking_HTTPIngressPath(a.(*v1.HTTPIngressPath), b.(*networking.HTTPIngressPath), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.HTTPIngressPath)(nil), (*v1.HTTPIngressPath)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. test/import2.dir/import3.go

    	p.C13 = (chan (chan<- (chan<- int)))(nil)
    
    	p.R1 = (chan <- chan int)(nil)
    	p.R3 = (<- chan chan int)(nil)
    	p.R4 = (chan chan <- int)(nil)
    
    	p.R5 = (<- chan <- chan int)(nil)
    	p.R6 = (chan <- <- chan int)(nil)
    	p.R7 = (chan <- chan <- int)(nil)
    
    	p.R8 = (<- chan <- chan chan int)(nil)
    	p.R9 = (<- chan chan <- chan int)(nil)
    	p.R10 = (chan <- <- chan chan int)(nil)
    	p.R11 = (chan <- chan <- chan int)(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/zz_generated.deepcopy.go

    	if in == nil {
    		return nil
    	}
    	out := new(CustomResourceDefinition)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *CustomResourceDefinition) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1alpha1/zz_generated.deepcopy.go

    func (in *ParamKind) DeepCopy() *ParamKind {
    	if in == nil {
    		return nil
    	}
    	out := new(ParamKind)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ParamRef) DeepCopyInto(out *ParamRef) {
    	*out = *in
    	if in.Selector != nil {
    		in, out := &in.Selector, &out.Selector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. src/net/error_test.go

    	if err != nil {
    		if ln != nil {
    			t.Errorf("FileListener returned non-nil interface %T(%v) with err != nil", ln, ln)
    		}
    		if perr := parseCommonError(err); perr != nil {
    			t.Error(perr)
    		}
    	} else {
    		ln.Close()
    		t.Error("should fail")
    	}
    	pc, err := FilePacketConn(f)
    	if err != nil {
    		if pc != nil {
    			t.Errorf("FilePacketConn returned non-nil interface %T(%v) with err != nil", pc, pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. istioctl/pkg/kubeinject/kubeinject.go

    	values, meshConfig, err := getIOPConfigs()
    	if err != nil {
    		return nil, nil, err
    	}
    	if meshConfig == nil {
    		if meshConfigFile != "" {
    			if meshConfig, err = mesh.ReadMeshConfig(meshConfigFile); err != nil {
    				return nil, nil, err
    			}
    		} else {
    			if meshConfig, err = getMeshConfigFromConfigMap(cliContext, "kube-inject", revision); err != nil {
    				return nil, nil, err
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top