Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,537 for NIL (0.04 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.deepcopy.go

    func (in *DaemonSet) DeepCopy() *DaemonSet {
    	if in == nil {
    		return nil
    	}
    	out := new(DaemonSet)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *DaemonSet) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  2. cmd/batch-job-common-types_gen.go

    			return
    		}
    	} else {
    		err = en.WriteBool(*z.Disable)
    		if err != nil {
    			err = msgp.WrapError(err, "Disable")
    			return
    		}
    	}
    	// write "Batch"
    	err = en.Append(0xa5, 0x42, 0x61, 0x74, 0x63, 0x68)
    	if err != nil {
    		return
    	}
    	if z.Batch == nil {
    		err = en.WriteNil()
    		if err != nil {
    			return
    		}
    	} else {
    		err = en.WriteInt(*z.Batch)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    	case *ast.RangeStmt:
    		a.apply(n, "Key", nil, n.Key)
    		a.apply(n, "Value", nil, n.Value)
    		a.apply(n, "X", nil, n.X)
    		a.apply(n, "Body", nil, n.Body)
    
    	// Declarations
    	case *ast.ImportSpec:
    		a.apply(n, "Doc", nil, n.Doc)
    		a.apply(n, "Name", nil, n.Name)
    		a.apply(n, "Path", nil, n.Path)
    		a.apply(n, "Comment", nil, n.Comment)
    
    	case *ast.ValueSpec:
    		a.apply(n, "Doc", nil, n.Doc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/zz_generated.deepcopy.go

    func (in *FlowSchema) DeepCopy() *FlowSchema {
    	if in == nil {
    		return nil
    	}
    	out := new(FlowSchema)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *FlowSchema) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  5. pkg/apis/storage/zz_generated.deepcopy.go

    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    	return nil
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *CSIDriverList) DeepCopyInto(out *CSIDriverList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	f := informers.NewSharedInformerFactory(c, 5*time.Minute)
    	handler, err := newLifecycleWithClock(sets.NewString(metav1.NamespaceDefault, metav1.NamespaceSystem), cacheClock)
    	if err != nil {
    		return nil, f, err
    	}
    	pluginInitializer := kubeadmission.New(c, nil, f, nil, nil, nil, nil)
    	pluginInitializer.Initialize(handler)
    	err = admission.ValidateInitialization(handler)
    	return handler, f, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/zz_generated.deepcopy.go

    	if in == nil {
    		return nil
    	}
    	out := new(Variable)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *WebhookClientConfig) DeepCopyInto(out *WebhookClientConfig) {
    	*out = *in
    	if in.URL != nil {
    		in, out := &in.URL, &out.URL
    		*out = new(string)
    		**out = **in
    	}
    	if in.Service != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. src/net/unixsock.go

    	}
    	if laddr == nil {
    		return nil, &OpError{Op: "listen", Net: network, Source: nil, Addr: nil, Err: errMissingAddress}
    	}
    	sl := &sysListener{network: network, address: laddr.String()}
    	c, err := sl.listenUnixgram(context.Background(), laddr)
    	if err != nil {
    		return nil, &OpError{Op: "listen", Net: network, Source: nil, Addr: laddr.opAddr(), Err: err}
    	}
    	return c, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/zz_generated.deepcopy.go

    func (in *DefaultPreemptionArgs) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    	return nil
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *Extender) DeepCopyInto(out *Extender) {
    	*out = *in
    	if in.TLSConfig != nil {
    		in, out := &in.TLSConfig, &out.TLSConfig
    		*out = new(ExtenderTLSConfig)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 22:02:57 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/resource/v1alpha2/zz_generated.deepcopy.go

    	if in == nil {
    		return nil
    	}
    	out := new(AllocationResult)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AllocationResultModel) DeepCopyInto(out *AllocationResultModel) {
    	*out = *in
    	if in.NamedResources != nil {
    		in, out := &in.NamedResources, &out.NamedResources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top