Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for NIL (0.04 sec)

  1. 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)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/server.go

    	if err != nil {
    		return nil, nil, nil, nil, "", err
    	}
    
    	apiExtensionsClient, err := clientset.NewForConfig(config)
    	if err != nil {
    		tearDown()
    		return nil, nil, nil, nil, "", err
    	}
    
    	dynamicClient, err := dynamic.NewForConfig(config)
    	if err != nil {
    		tearDown()
    		return nil, nil, nil, nil, "", err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. 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)
  4. test/import2.dir/import2.go

    var C9 <- chan chan <- chan int = (<-chan (chan<- (chan int)))(nil)
    var C10 chan <- <- chan chan int = (chan<- (<-chan (chan int)))(nil)
    var C11 chan <- chan <- chan int = (chan<- (chan<- (chan int)))(nil)
    var C12 chan chan <- <- chan int = (chan (chan<- (<-chan int)))(nil)
    var C13 chan chan <- chan <- int = (chan (chan<- (chan<- int)))(nil)
    
    var R1 chan<- (chan int) = (chan <- chan int)(nil)
    var R3 <-chan (chan int) = (<- chan chan int)(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/regexp/find_test.go

    		switch {
    		case test.matches == nil && result == nil:
    			// ok
    		case test.matches == nil && result != nil:
    			t.Errorf("expected no match; got one: %s", test)
    		case test.matches != nil && result == nil:
    			t.Fatalf("expected match; got none: %s", test)
    		case test.matches != nil && result != nil:
    			if len(test.matches) != len(result) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 15:28:50 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*apiserver.Issuer)(nil), (*Issuer)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_apiserver_Issuer_To_v1beta1_Issuer(a.(*apiserver.Issuer), b.(*Issuer), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:10:34 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  10. pkg/apis/batch/zz_generated.deepcopy.go

    func (in *CronJob) DeepCopy() *CronJob {
    	if in == nil {
    		return nil
    	}
    	out := new(CronJob)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *CronJob) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top