Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 7,770 for NIL (0.05 sec)

  1. 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)
  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. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	f := informers.NewSharedInformerFactory(c, 5*time.Minute)
    	handler, err := newLifecycleWithClock(sets.NewString(metav1.NamespaceDefault, metav1.NamespaceSystem), cacheClock)
    	if err != nil {
    		return nil, f, err
    	}
    	pluginInitializer := kubeadmission.New(c, nil, f, nil, nil, nil, nil)
    	pluginInitializer.Initialize(handler)
    	err = admission.ValidateInitialization(handler)
    	return handler, f, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. src/net/sock_posix.go

    	// raddr is nil. Otherwise we assume it's just for dialers or
    	// the other connection holders.
    
    	if laddr != nil && raddr == nil {
    		switch sotype {
    		case syscall.SOCK_STREAM, syscall.SOCK_SEQPACKET:
    			if err := fd.listenStream(ctx, laddr, listenerBacklog(), ctrlCtxFn); err != nil {
    				fd.Close()
    				return nil, err
    			}
    			return fd, nil
    		case syscall.SOCK_DGRAM:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. pkg/apis/extensions/v1beta1/conversion.go

    	if err := autoConvert_v1beta1_NetworkPolicySpec_To_networking_NetworkPolicySpec(in, out, s); err != nil {
    		return err
    	}
    	if out.Ingress == nil {
    		// Produce a zero-length non-nil slice for compatibility with previous manual conversion.
    		out.Ingress = make([]networking.NetworkPolicyIngressRule, 0)
    	}
    	if out.Egress == nil {
    		// Produce a zero-length non-nil slice for compatibility with previous manual conversion.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/expr2.go

    }
    
    func pointers() {
    	// nil
    	_ = nil == nil // ERROR "operator == not defined on untyped nil"
    	_ = nil != nil // ERROR "operator != not defined on untyped nil"
    	_ = nil /* ERROR "< not defined" */ < nil
    	_ = nil /* ERROR "<= not defined" */ <= nil
    	_ = nil /* ERROR "> not defined" */ > nil
    	_ = nil /* ERROR ">= not defined" */ >= nil
    
    	// basics
    	var p, q *int
    	_ = p == q
    	_ = p != q
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. src/crypto/x509/root_windows.go

    	if err != nil {
    		return nil, err
    	}
    
    	if opts != nil && len(opts.DNSName) > 0 {
    		err = checkChainSSLServerPolicy(c, chainCtx, opts)
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	chain, err = extractSimpleChain(chainCtx.Chains, int(chainCtx.ChainCount))
    	if err != nil {
    		return nil, err
    	}
    	if len(chain) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top