Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for NIL (0.05 sec)

  1. pkg/securitycontext/accessors.go

    	if w.podSC == nil {
    		return nil
    	}
    	return w.podSC.RunAsUser
    }
    func (w *podSecurityContextWrapper) SetRunAsUser(v *int64) {
    	if w.podSC == nil && v == nil {
    		return
    	}
    	w.ensurePodSC()
    	w.podSC.RunAsUser = v
    }
    func (w *podSecurityContextWrapper) RunAsGroup() *int64 {
    	if w.podSC == nil {
    		return nil
    	}
    	return w.podSC.RunAsGroup
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  2. pkg/apis/networking/v1/zz_generated.conversion.go

    		return Convert_v1_HTTPIngressPath_To_networking_HTTPIngressPath(a.(*v1.HTTPIngressPath), b.(*networking.HTTPIngressPath), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.HTTPIngressPath)(nil), (*v1.HTTPIngressPath)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/zz_generated.deepcopy.go

    	if in == nil {
    		return nil
    	}
    	out := new(CustomResourceDefinition)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *CustomResourceDefinition) 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 Feb 28 19:06:46 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/initializer/initializer_test.go

    func TestWantsAuthorizer(t *testing.T) {
    	target := initializer.New(nil, nil, nil, &TestAuthorizer{}, nil, nil, nil)
    	wantAuthorizerAdmission := &WantAuthorizerAdmission{}
    	target.Initialize(wantAuthorizerAdmission)
    	if wantAuthorizerAdmission.auth == nil {
    		t.Errorf("expected authorizer to be initialized but found nil")
    	}
    }
    
    // TestWantsExternalKubeClientSet ensures that the clientset is injected
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. pkg/apis/apps/v1beta1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*autoscaling.ScaleSpec)(nil), (*v1beta1.ScaleSpec)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_autoscaling_ScaleSpec_To_v1beta1_ScaleSpec(a.(*autoscaling.ScaleSpec), b.(*v1beta1.ScaleSpec), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 52.9K bytes
    - Viewed (0)
  6. src/net/error_test.go

    	if err != nil {
    		if ln != nil {
    			t.Errorf("FileListener returned non-nil interface %T(%v) with err != nil", ln, ln)
    		}
    		if perr := parseCommonError(err); perr != nil {
    			t.Error(perr)
    		}
    	} else {
    		ln.Close()
    		t.Error("should fail")
    	}
    	pc, err := FilePacketConn(f)
    	if err != nil {
    		if pc != nil {
    			t.Errorf("FilePacketConn returned non-nil interface %T(%v) with err != nil", pc, pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  7. src/os/user/lookup_unix.go

    		}
    		if _, err := strconv.Atoi(parts[2]); err != nil {
    			return nil, nil
    		}
    		return &Group{Name: parts[0], Gid: parts[2]}, nil
    	}
    }
    
    func findGroupId(id string, r io.Reader) (*Group, error) {
    	if v, err := readColonFile(r, matchGroupIndexValue(id, 2), 3); err != nil {
    		return nil, err
    	} else if v != nil {
    		return v.(*Group), nil
    	}
    	return nil, UnknownGroupIdError(id)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. 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)
  9. pkg/apis/autoscaling/v2beta2/zz_generated.conversion.go

    		return Convert_autoscaling_ExternalMetricSource_To_v2beta2_ExternalMetricSource(a.(*autoscaling.ExternalMetricSource), b.(*v2beta2.ExternalMetricSource), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 60.9K bytes
    - Viewed (0)
  10. test/import2.dir/import3.go

    	p.C13 = (chan (chan<- (chan<- int)))(nil)
    
    	p.R1 = (chan <- chan int)(nil)
    	p.R3 = (<- chan chan int)(nil)
    	p.R4 = (chan chan <- int)(nil)
    
    	p.R5 = (<- chan <- chan int)(nil)
    	p.R6 = (chan <- <- chan int)(nil)
    	p.R7 = (chan <- chan <- int)(nil)
    
    	p.R8 = (<- chan <- chan chan int)(nil)
    	p.R9 = (<- chan chan <- chan int)(nil)
    	p.R10 = (chan <- <- chan chan int)(nil)
    	p.R11 = (chan <- chan <- chan int)(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.3K bytes
    - Viewed (0)
Back to top