Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for NIL (0.07 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/testing/zz_generated.deepcopy.go

    func (in *EmbeddedTest) DeepCopy() *EmbeddedTest {
    	if in == nil {
    		return nil
    	}
    	out := new(EmbeddedTest)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *EmbeddedTest) 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 Aug 24 19:47:49 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  4. pkg/kubelet/container/testing/os.go

    				res = append(res, k)
    			}
    		}
    		return res, nil
    	}
    	return nil, nil
    }
    
    // Open is a fake call that returns nil.
    func (*FakeOS) Open(name string) (*os.File, error) {
    	return nil, nil
    }
    
    // OpenFile is a fake call that return nil.
    func (*FakeOS) OpenFile(name string, flag int, perm os.FileMode) (*os.File, error) {
    	return nil, nil
    }
    
    // Rename is a fake call that return nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 13:37:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. 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)
  6. test/fixedbugs/bug249.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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  7. 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)
  8. src/net/interface.go

    	if index <= 0 {
    		return nil, &OpError{Op: "route", Net: "ip+net", Source: nil, Addr: nil, Err: errInvalidInterfaceIndex}
    	}
    	ift, err := interfaceTable(index)
    	if err != nil {
    		return nil, &OpError{Op: "route", Net: "ip+net", Source: nil, Addr: nil, Err: err}
    	}
    	ifi, err := interfaceByIndex(ift, index)
    	if err != nil {
    		err = &OpError{Op: "route", Net: "ip+net", Source: nil, Addr: nil, Err: err}
    	}
    	return ifi, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1/zz_generated.deepcopy.go

    func (in *FlowSchema) DeepCopy() *FlowSchema {
    	if in == nil {
    		return nil
    	}
    	out := new(FlowSchema)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *FlowSchema) 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 Oct 30 12:18:41 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  10. pkg/apis/storage/zz_generated.deepcopy.go

    	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 *CSIDriverList) DeepCopyInto(out *CSIDriverList) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ListMeta.DeepCopyInto(&out.ListMeta)
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 19.1K bytes
    - Viewed (0)
Back to top