Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 7,770 for NIL (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pilot/pkg/config/kube/crd/conversion.go

    	c, err := s.NewInstance()
    	if err != nil {
    		return nil, err
    	}
    	if err = config.ApplyJSON(c, js); err != nil {
    		return nil, err
    	}
    	return c, nil
    }
    
    func StatusJSONFromMap(schema resource.Schema, jsonMap *json.RawMessage) (config.Status, error) {
    	if jsonMap == nil {
    		return nil, nil
    	}
    	js, err := json.Marshal(jsonMap)
    	if err != nil {
    		return nil, err
    	}
    	status, err := schema.Status()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/apps/v1beta1/zz_generated.deepcopy.go

    	if in == nil {
    		return nil
    	}
    	out := new(ControllerRevision)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *ControllerRevision) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.deepcopy.go

    	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
    		*out = make([]string, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. src/debug/macho/file.go

    				return nil, err
    			}
    			b = dbuf
    		}
    		return b, nil
    	}
    
    	// There are many other DWARF sections, but these
    	// are the ones the debug/dwarf package uses.
    	// Don't bother loading others.
    	var dat = map[string][]byte{"abbrev": nil, "info": nil, "str": nil, "line": nil, "ranges": nil}
    	for _, s := range f.Sections {
    		suffix := dwarfSuffix(s)
    		if suffix == "" {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. pkg/apis/networking/v1alpha1/zz_generated.conversion.go

    	if err := s.AddGeneratedConversionFunc((*v1alpha1.IPAddress)(nil), (*networking.IPAddress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha1_IPAddress_To_networking_IPAddress(a.(*v1alpha1.IPAddress), b.(*networking.IPAddress), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.IPAddress)(nil), (*v1alpha1.IPAddress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top