Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for NIL (0.03 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/deepcopy.go

    	if in == nil {
    		return nil
    	}
    	out := new(JSONSchemaProps)
    	*out = *in
    
    	if in.Ref != nil {
    		in, out := &in.Ref, &out.Ref
    		if *in == nil {
    			*out = nil
    		} else {
    			*out = new(string)
    			**out = **in
    		}
    	}
    
    	if in.Maximum != nil {
    		in, out := &in.Maximum, &out.Maximum
    		if *in == nil {
    			*out = nil
    		} else {
    			*out = new(float64)
    			**out = **in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. 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)
  3. cmd/data-usage-cache_gen.go

    				err = msgp.WrapError(err, "ReplicationStats")
    				return
    			}
    		}
    	}
    	if (zb0001Mask & 0x100) == 0 { // if not omitted
    		// write "ats"
    		err = en.Append(0xa3, 0x61, 0x74, 0x73)
    		if err != nil {
    			return
    		}
    		if z.AllTierStats == nil {
    			err = en.WriteNil()
    			if err != nil {
    				return
    			}
    		} else {
    			err = z.AllTierStats.EncodeMsg(en)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
  4. 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)
  5. src/net/sock_posix.go

    	// raddr is nil. Otherwise we assume it's just for dialers or
    	// the other connection holders.
    
    	if laddr != nil && raddr == nil {
    		switch sotype {
    		case syscall.SOCK_STREAM, syscall.SOCK_SEQPACKET:
    			if err := fd.listenStream(ctx, laddr, listenerBacklog(), ctrlCtxFn); err != nil {
    				fd.Close()
    				return nil, err
    			}
    			return fd, nil
    		case syscall.SOCK_DGRAM:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. pkg/apis/extensions/v1beta1/conversion.go

    	if err := autoConvert_v1beta1_NetworkPolicySpec_To_networking_NetworkPolicySpec(in, out, s); err != nil {
    		return err
    	}
    	if out.Ingress == nil {
    		// Produce a zero-length non-nil slice for compatibility with previous manual conversion.
    		out.Ingress = make([]networking.NetworkPolicyIngressRule, 0)
    	}
    	if out.Egress == nil {
    		// Produce a zero-length non-nil slice for compatibility with previous manual conversion.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. 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)
  8. src/crypto/x509/root_darwin.go

    	if err != nil {
    		return nil, errors.New("invalid leaf certificate")
    	}
    	macOS.CFArrayAppendValue(certs, leaf)
    	if opts.Intermediates != nil {
    		for _, lc := range opts.Intermediates.lazyCerts {
    			c, err := lc.getCert()
    			if err != nil {
    				return nil, err
    			}
    			sc, err := macOS.SecCertificateCreateWithData(c.Raw)
    			if err != nil {
    				return nil, err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top