Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for NIL (0.04 sec)

  1. pkg/apis/admissionregistration/v1alpha1/zz_generated.conversion.go

    		return Convert_admissionregistration_AuditAnnotation_To_v1alpha1_AuditAnnotation(a.(*admissionregistration.AuditAnnotation), b.(*v1alpha1.AuditAnnotation), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  2. pkg/apis/networking/v1beta1/zz_generated.conversion.go

    		return Convert_v1beta1_HTTPIngressPath_To_networking_HTTPIngressPath(a.(*v1beta1.HTTPIngressPath), b.(*networking.HTTPIngressPath), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  3. src/go/types/context_test.go

    		// type nullaryP = func[P any]()
    		tparam := NewTypeParam(NewTypeName(nopos, nil, "P", nil), &emptyInterface)
    		nullaryP = NewSignatureType(nil, nil, []*TypeParam{tparam}, nil, nil, false)
    	}
    	{
    		// type nullaryQ = func[Q any]()
    		tparam := NewTypeParam(NewTypeName(nopos, nil, "Q", nil), &emptyInterface)
    		nullaryQ = NewSignatureType(nil, nil, []*TypeParam{tparam}, nil, nil, false)
    	}
    	{
    		// type unaryP = func[P any](_ P)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/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: Thu Jul 20 16:30:10 UTC 2023
    - 24.6K 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. test/nilptr3.go

    	_ = *arrayp     // ERROR "generated nil check"
    	_ = *array0p    // ERROR "generated nil check"
    	_ = *array0p    // ERROR "removed.* nil check"
    	_ = *intp       // ERROR "removed.* nil check"
    	_ = *arrayp     // ERROR "removed.* nil check"
    	_ = *structp    // ERROR "generated nil check"
    	_ = *emptyp     // ERROR "generated nil check"
    	_ = *arrayp     // ERROR "removed.* nil check"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. 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)
  8. src/net/protoconn_test.go

    	if _, _, err := c1.WriteMsgUnix(wb, nil, a2); err != nil {
    		t.Fatal(err)
    	}
    	if _, _, _, _, err := c2.ReadMsgUnix(rb2, nil); err != nil {
    		t.Fatal(err)
    	}
    	if _, err := c2.WriteToUnix(wb, a1); err != nil {
    		t.Fatal(err)
    	}
    	if _, _, err := c1.ReadFromUnix(rb1); err != nil {
    		t.Fatal(err)
    	}
    	if _, err := c3.WriteToUnix(wb, a1); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*url.Values)(nil), (*GetOptions)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_url_Values_To_v1_GetOptions(a.(*url.Values), b.(*GetOptions), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top