Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for Forbidden (0.14 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/dependencies/JavaConfigurationSetupIntegrationTest.groovy

            'java-library' | 'compileClasspath'             | FORBIDDEN
            'java-library' | 'runtimeClasspath'             | FORBIDDEN
            'java-library' | 'annotationProcessor'          | FORBIDDEN
            'java-library' | 'api'                          | FORBIDDEN
            'java-library' | 'compileOnlyApi'               | FORBIDDEN
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/validation/validation.go

    		if subject.User != nil {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("user"), "user is forbidden when subject kind is not 'User'"))
    		}
    		if subject.Group != nil {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("group"), "group is forbidden when subject kind is not 'Group'"))
    		}
    	case flowcontrol.SubjectKindUser:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("default"), "must be undefined to be structural"))
    	}
    	if len(v.ForbiddenGenerics.Title) > 0 {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("title"), "must be empty to be structural"))
    	}
    	if len(v.ForbiddenGenerics.Description) > 0 {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("description"), "must be empty to be structural"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation_test.go

    		}
    		if len(errs) != 0 && typeName == "object" {
    			t.Errorf("unexpected forbidden field validation errors for: %#v", s)
    		}
    		if len(errs) == 0 && typeName != "object" {
    			t.Errorf("expected forbidden field validation errors for: %#v", s)
    		}
    	}
    
    	// check that anything other than name and generateName of ObjectMeta in metadata properties is forbidden
    	tt := reflect.TypeOf(metav1.ObjectMeta{})
    	for i := 0; i < tt.NumField(); i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. cmd/import-boss/main.go

    func (r Rule) Evaluate(imp string) Disposition {
    	// To pass, an import muct be allowed and not forbidden.
    	// Check forbidden first.
    	for _, forbidden := range r.ForbiddenPrefixes {
    		klog.V(5).Infof("checking %q against forbidden prefix %q", imp, forbidden)
    		if hasPathPrefix(imp, forbidden) {
    			klog.V(5).Infof("this import of %q is forbidden", imp)
    			return DepForbidden
    		}
    	}
    	for _, allowed := range r.AllowedPrefixes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

        /*
         * TODO(cpovirk): move ForwardingTestCase somewhere common, and use it to
         * test the forwarded methods
         */
      }
    
      @AndroidIncompatible // Mocking ExecutorService is forbidden there. TODO(b/218700094): Don't mock.
      public void testListeningDecorator_noWrapExecuteTask() {
        ExecutorService delegate = mock(ExecutorService.class);
        ListeningExecutorService service = listeningDecorator(delegate);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

        /*
         * TODO(cpovirk): move ForwardingTestCase somewhere common, and use it to
         * test the forwarded methods
         */
      }
    
      @AndroidIncompatible // Mocking ExecutorService is forbidden there. TODO(b/218700094): Don't mock.
      public void testListeningDecorator_noWrapExecuteTask() {
        ExecutorService delegate = mock(ExecutorService.class);
        ListeningExecutorService service = listeningDecorator(delegate);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  8. pkg/apis/storage/validation/validation.go

    		allErrs = append(allErrs, field.Forbidden(field.NewPath("parameters"), "updates to parameters are forbidden."))
    	}
    
    	if storageClass.Provisioner != oldStorageClass.Provisioner {
    		allErrs = append(allErrs, field.Forbidden(field.NewPath("provisioner"), "updates to provisioner are forbidden."))
    	}
    
    	if *storageClass.ReclaimPolicy != *oldStorageClass.ReclaimPolicy {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    	}
    	return &Error{ErrorTypeNotSupported, field.String(), value, detail}
    }
    
    // Forbidden returns a *Error indicating "forbidden".  This is used to
    // report valid (as per formatting rules) values which would be accepted under
    // some conditions, but which are not permitted by current conditions (e.g.
    // security policy).
    func Forbidden(field *Path, detail string) *Error {
    	return &Error{ErrorTypeForbidden, field.String(), "", detail}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclaim_test.go

    							Resource: "pods",
    							Name:     "foo",
    							UID:      "1",
    						})
    				}
    				return claim
    			},
    		},
    		"invalid-reserved-for-not-shared": {
    			wantFailures: field.ErrorList{field.Forbidden(field.NewPath("status", "reservedFor"), "may not be reserved more than once")},
    			oldClaim: func() *resource.ResourceClaim {
    				claim := validAllocatedClaim.DeepCopy()
    				claim.Status.Allocation.Shareable = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top