Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for NIL (0.16 sec)

  1. internal/config/cache/remote_gen.go

    			} else {
    				if z.IfModifiedSince == nil {
    					z.IfModifiedSince = new(time.Time)
    				}
    				*z.IfModifiedSince, bts, err = msgp.ReadTimeBytes(bts)
    				if err != nil {
    					err = msgp.WrapError(err, "IfModifiedSince")
    					return
    				}
    			}
    		case "IfUnModifiedSince":
    			if msgp.IsNil(bts) {
    				bts, err = msgp.ReadNilBytes(bts)
    				if err != nil {
    					return
    				}
    				z.IfUnModifiedSince = nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 21:46:17 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. internal/s3select/sql/funceval.go

    		return nil, err
    	}
    	ts1, ok := tval1.ToTimestamp()
    	if !ok {
    		return nil, fmt.Errorf("%s() expects two timestamp arguments", sqlFnDateDiff)
    	}
    
    	tval2, err := d.Timestamp2.evalNode(r, tableAlias)
    	if err != nil {
    		return nil, err
    	}
    	if err = inferTypeAsTimestamp(tval2); err != nil {
    		return nil, err
    	}
    	ts2, ok := tval2.ToTimestamp()
    	if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 13.2K bytes
    - Viewed (0)
  3. src/net/file_unix.go

    	if err != nil {
    		return nil, err
    	}
    	switch fd.laddr.(type) {
    	case *TCPAddr:
    		return newTCPConn(fd, defaultTCPKeepAliveIdle, KeepAliveConfig{}, testPreHookSetKeepAlive, testHookSetKeepAlive), nil
    	case *UDPAddr:
    		return newUDPConn(fd), nil
    	case *IPAddr:
    		return newIPConn(fd), nil
    	case *UnixAddr:
    		return newUnixConn(fd), nil
    	}
    	fd.Close()
    	return nil, syscall.EINVAL
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.deepcopy.go

    	if in == nil {
    		return nil
    	}
    	out := new(AdmissionConfiguration)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *AdmissionConfiguration) 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 Mar 04 00:57:24 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. pkg/api/pod/util.go

    		if lifecycle.PreStop != nil && lifecycle.PreStop.Sleep != nil {
    			lifecycle.PreStop.Sleep = nil
    			if lifecycle.PreStop.Exec == nil && lifecycle.PreStop.HTTPGet == nil && lifecycle.PreStop.TCPSocket == nil {
    				lifecycle.PreStop = nil
    			}
    		}
    		if lifecycle.PostStart != nil && lifecycle.PostStart.Sleep != nil {
    			lifecycle.PostStart.Sleep = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  6. pkg/apis/apps/v1/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 {
    					corev1.SetDefaults_HTTPGetAction(a.Lifecycle.PostStart.HTTPGet)
    				}
    			}
    			if a.Lifecycle.PreStop != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 40.8K bytes
    - Viewed (0)
  7. pkg/apis/batch/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.CronJobList)(nil), (*batch.CronJobList)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_CronJobList_To_batch_CronJobList(a.(*v1.CronJobList), b.(*batch.CronJobList), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  8. pkg/apis/storage/v1alpha1/zz_generated.conversion.go

    		return Convert_storage_CSIStorageCapacityList_To_v1alpha1_CSIStorageCapacityList(a.(*storage.CSIStorageCapacityList), b.(*v1alpha1.CSIStorageCapacityList), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/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: Fri Jul 21 20:56:23 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/deepcopy.go

    	} else {
    		out.Example = nil
    	}
    
    	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
    		}
    	}
    
    	if in.Minimum != nil {
    		in, out := &in.Minimum, &out.Minimum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top