Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of about 10,000 for NIL (0.03 sec)

  1. cmd/kubeadm/app/apis/output/zz_generated.deepcopy.go

    	if in == nil {
    		return nil
    	}
    	out := new(AvailableUpgrade)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *AvailableUpgrade) 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 Apr 24 07:01:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. test/fixedbugs/issue13273.go

    	<-chan int((chan int)(nil))
    
    	<-chan int(nil)
    	<-chan chan int(nil)
    	<-chan chan chan int(nil)
    	<-chan chan chan chan int(nil)
    	<-chan chan chan chan chan int(nil)
    
    	<-chan<-chan int(nil)
    	<-chan<-chan<-chan int(nil)
    	<-chan<-chan<-chan<-chan int(nil)
    	<-chan<-chan<-chan<-chan<-chan int(nil)
    
    	<-chan (<-chan int)(nil)
    	<-chan (<-chan (<-chan int))(nil)
    	<-chan (<-chan (<-chan (<-chan int)))(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 01 22:37:04 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. cmd/metacache-stream.go

    func (w *metacacheWriter) write(objs ...metaCacheEntry) error {
    	if w == nil {
    		return errors.New("metacacheWriter: nil writer")
    	}
    	if len(objs) == 0 {
    		return nil
    	}
    	if w.creator != nil {
    		err := w.creator()
    		w.creator = nil
    		if err != nil {
    			return fmt.Errorf("metacacheWriter: unable to create writer: %w", err)
    		}
    		if w.mw == nil {
    			return errors.New("metacacheWriter: writer not initialized")
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1beta1/zz_generated.deepcopy.go

    func (in *HTTPIngressPath) DeepCopy() *HTTPIngressPath {
    	if in == nil {
    		return nil
    	}
    	out := new(HTTPIngressPath)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *HTTPIngressRuleValue) DeepCopyInto(out *HTTPIngressRuleValue) {
    	*out = *in
    	if in.Paths != nil {
    		in, out := &in.Paths, &out.Paths
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 12.4K bytes
    - Viewed (0)
  5. pkg/apis/batch/v1beta1/zz_generated.defaults.go

    				if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
    					var ptrVar1 string = ""
    					a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
    				}
    			}
    		}
    		if a.Lifecycle != nil {
    			if a.Lifecycle.PostStart != nil {
    				if a.Lifecycle.PostStart.HTTPGet != nil {
    					v1.SetDefaults_HTTPGetAction(a.Lifecycle.PostStart.HTTPGet)
    				}
    			}
    			if a.Lifecycle.PreStop != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 20:39:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. pkg/apis/authentication/v1beta1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta1.TokenReview)(nil), (*authentication.TokenReview)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta1_TokenReview_To_authentication_TokenReview(a.(*v1beta1.TokenReview), b.(*authentication.TokenReview), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. pkg/volume/iscsi/iscsi.go

    			return spec.Volume.ISCSI.SecretRef.Name, defaultSecretNamespace, nil
    		}
    		return "", "", nil
    	} else if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.ISCSI != nil {
    		secretRef := spec.PersistentVolume.Spec.ISCSI.SecretRef
    		secretNs := defaultSecretNamespace
    		if secretRef != nil {
    			if len(secretRef.Namespace) != 0 {
    				secretNs = secretRef.Namespace
    			}
    			return secretRef.Name, secretNs, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. internal/event/name.go

    		return ObjectAccessedAll, nil
    	case "s3:ObjectAccessed:Get":
    		return ObjectAccessedGet, nil
    	case "s3:ObjectAccessed:GetRetention":
    		return ObjectAccessedGetRetention, nil
    	case "s3:ObjectAccessed:GetLegalHold":
    		return ObjectAccessedGetLegalHold, nil
    	case "s3:ObjectAccessed:Head":
    		return ObjectAccessedHead, nil
    	case "s3:ObjectAccessed:Attributes":
    		return ObjectAccessedAttributes, nil
    	case "s3:ObjectCreated:*":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/cmd/pprof/pprof.go

    	})
    	return asm, nil
    }
    
    func (t *objTool) cachedDisasm(file string) (*objfile.Disasm, error) {
    	t.mu.Lock()
    	defer t.mu.Unlock()
    	if t.disasmCache == nil {
    		t.disasmCache = make(map[string]*objfile.Disasm)
    	}
    	d := t.disasmCache[file]
    	if d != nil {
    		return d, nil
    	}
    	f, err := objfile.Open(file)
    	if err != nil {
    		return nil, err
    	}
    	d, err = f.Disasm()
    	f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time_test.go

    	t1 := NewMicroTime(time.Now())
    	cases := []struct {
    		name   string
    		x      *MicroTime
    		y      *MicroTime
    		result bool
    	}{
    		{"nil =? nil", nil, nil, true},
    		{"!nil =? !nil", &t1, &t1, true},
    		{"nil =? !nil", nil, &t1, false},
    		{"!nil =? nil", &t1, nil, false},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			result := c.x.Equal(c.y)
    			if result != c.result {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top