Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. cmd/bucket-replication-metrics_gen.go

    	// write "Curr"
    	err = en.Append(0x83, 0xa4, 0x43, 0x75, 0x72, 0x72)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt(z.Curr)
    	if err != nil {
    		err = msgp.WrapError(err, "Curr")
    		return
    	}
    	// write "Avg"
    	err = en.Append(0xa3, 0x41, 0x76, 0x67)
    	if err != nil {
    		return
    	}
    	err = en.WriteFloat32(z.Avg)
    	if err != nil {
    		err = msgp.WrapError(err, "Avg")
    		return
    	}
    	// write "Max"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.deepcopy.go

    func (in *DaemonSet) DeepCopy() *DaemonSet {
    	if in == nil {
    		return nil
    	}
    	out := new(DaemonSet)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *DaemonSet) 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 May 01 18:19:25 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  3. src/net/tcpsock_plan9.go

    		if laddr != nil && len(laddr.IP) != 0 && laddr.IP.To4() == nil {
    			return nil, &AddrError{Err: "non-IPv4 local address", Addr: laddr.String()}
    		}
    	case "tcp", "tcp6":
    	default:
    		return nil, UnknownNetworkError(sd.network)
    	}
    	if raddr == nil {
    		return nil, errMissingAddress
    	}
    	fd, err := dialPlan9(ctx, sd.network, laddr, raddr)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. pkg/apis/rbac/v1alpha1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*rbac.RoleRef)(nil), (*v1alpha1.RoleRef)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_rbac_RoleRef_To_v1alpha1_RoleRef(a.(*rbac.RoleRef), b.(*v1alpha1.RoleRef), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddConversionFunc((*rbac.Subject)(nil), (*v1alpha1.Subject)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 23.6K bytes
    - Viewed (0)
  5. cmd/batch-job-common-types_gen.go

    			return
    		}
    	} else {
    		err = en.WriteBool(*z.Disable)
    		if err != nil {
    			err = msgp.WrapError(err, "Disable")
    			return
    		}
    	}
    	// write "Batch"
    	err = en.Append(0xa5, 0x42, 0x61, 0x74, 0x63, 0x68)
    	if err != nil {
    		return
    	}
    	if z.Batch == nil {
    		err = en.WriteNil()
    		if err != nil {
    			return
    		}
    	} else {
    		err = en.WriteInt(*z.Batch)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/v1beta1/zz_generated.conversion.go

    		return Convert_flowcontrol_FlowSchema_To_v1beta1_FlowSchema(a.(*flowcontrol.FlowSchema), b.(*v1beta1.FlowSchema), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta1.FlowSchemaCondition)(nil), (*flowcontrol.FlowSchemaCondition)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/v1beta2/zz_generated.conversion.go

    		return Convert_flowcontrol_FlowSchema_To_v1beta2_FlowSchema(a.(*flowcontrol.FlowSchema), b.(*v1beta2.FlowSchema), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta2.FlowSchemaCondition)(nil), (*flowcontrol.FlowSchemaCondition)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/net/http/range_test.go

    	r      []httpRange
    }{
    	{"", 0, nil},
    	{"", 1000, nil},
    	{"foo", 0, nil},
    	{"bytes=", 0, nil},
    	{"bytes=7", 10, nil},
    	{"bytes= 7 ", 10, nil},
    	{"bytes=1-", 0, nil},
    	{"bytes=5-4", 10, nil},
    	{"bytes=0-2,5-4", 10, nil},
    	{"bytes=2-5,4-3", 10, nil},
    	{"bytes=--5,4--3", 10, nil},
    	{"bytes=A-", 10, nil},
    	{"bytes=A- ", 10, nil},
    	{"bytes=A-Z", 10, nil},
    	{"bytes= -Z", 10, nil},
    	{"bytes=5-Z", 10, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 25 17:52:35 UTC 2016
    - 2.4K bytes
    - Viewed (0)
Back to top