Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for errorT (0.19 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				requireValidPropertyType: opts.requireValidPropertyType,
    			}
    			errors := ValidateCustomResourceDefinitionOpenAPISchema(tt.schema, field.NewPath("openAPIV3Schema"), openAPIV3Schema, true, &opts, celContext).AllErrors()
    			if len(errors) != 0 {
    				t.Errorf("Expected no validate errors but got %v", errors)
    			}
    			if conversionCount != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: APIGroup: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: APIGroup: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType)
    			}
    			var stringLen uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: ConversionRequest: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: ConversionRequest: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field UID", wireType)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 244.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.Error != nil {
    		i -= len(*m.Error)
    		copy(dAtA[i:], *m.Error)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Error)))
    		i--
    		dAtA[i] = 0x1a
    	}
    	i -= len(m.Protocol)
    	copy(dAtA[i:], m.Protocol)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Protocol)))
    	i--
    	dAtA[i] = 0x12
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: AllocationResult: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: AllocationResult: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field ResourceHandles", wireType)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 261.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: ConversionRequest: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: ConversionRequest: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field UID", wireType)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 248K bytes
    - Viewed (0)
  7. pkg/registry/core/service/storage/storage_test.go

    			if err == nil {
    				t.Fatalf("unexpected success creating service")
    			}
    			for _, s := range tc.expect {
    				if !strings.Contains(err.Error(), s) {
    					t.Errorf("expected to find %q in the error:\n  %s", s, err.Error())
    				}
    			}
    		})
    	}
    }
    
    func TestCreateDeleteReuse(t *testing.T) {
    	testCases := []struct {
    		name string
    		svc  *api.Service
    	}{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier_test.go

    			if err == nil {
    				if tc.error != "" {
    					t.Errorf("unexpectedly did not get error")
    				} else {
    					assert.Equal(t, strings.TrimPrefix(tc.output, "\n"), out)
    				}
    			} else {
    				if tc.error == "" {
    					t.Errorf("got unexpected error: %v", err)
    				} else if !strings.HasPrefix(err.Error(), tc.error) {
    					t.Errorf("got wrong error: %v (expected %q)", err, tc.error)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  9. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

              },
              "failurePolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

            "properties": {
              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
Back to top