Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 286 for forbidden (0.25 sec)

  1. pkg/apis/autoscaling/validation/validation.go

    			hasExternalMetrics = true
    		}
    	}
    
    	if minReplicas != nil && *minReplicas == 0 {
    		if !hasObjectMetrics && !hasExternalMetrics {
    			allErrs = append(allErrs, field.Forbidden(fldPath, "must specify at least one Object or External metric to support scaling to zero replicas"))
    		}
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                        } else {
                            events.add(new SimpleConditionEvent(method, true, method.getFullName() + " is not using forbidden Nullable"));
                        }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. pkg/routes/logs.go

    	http.ServeFile(resp.ResponseWriter, req.Request, logdir)
    }
    
    // logFileNameIsTooLong checks filename length, returns true if it's longer than 255.
    // cause http.ServeFile returns default error code 500 except for NotExist and Forbidden, but we need to separate the real 500 from oversize filename here.
    func logFileNameIsTooLong(filePath string) bool {
    	_, err := os.Stat(filePath)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 21 16:25:48 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. pkg/apis/resource/validation/validation.go

    		if resourceClaim.Status.Allocation == nil {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("reservedFor"), "may not be specified when `allocated` is not set"))
    		} else {
    			if !resourceClaim.Status.Allocation.Shareable && len(resourceClaim.Status.ReservedFor) > 1 {
    				allErrs = append(allErrs, field.Forbidden(fldPath.Child("reservedFor"), "may not be reserved more than once"))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/util/NameValidator.java

        private static final char FORBIDDEN_LEADING_AND_TRAILING_CHARACTER = '.';
    
        private NameValidator() { }
    
        /**
         * Validates that a given name string does not contain any forbidden characters.
         */
        public static void validate(String name, String nameDescription, String fixSuggestion) throws InvalidUserDataException {
            logDeprecation();
            if (StringUtils.isEmpty(name)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:39 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenPublishGcsErrorsIntegrationTest.groovy

            failure.assertHasCause("Failed to publish publication 'pub' to repository 'maven'")
            failure.assertHasCause("Could not write to resource '${module.artifact.uri}'.")
            failure.assertHasCause("403 Forbidden")
        }
    
        MavenGcsRepository getMavenGcsRepo() {
            new MavenGcsRepository(server, file(getTestDirectory()), getRepositoryPath(), getBucket())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. pkg/registry/admissionregistration/validatingadmissionpolicy/strategy.go

    	if len(errs) == 0 {
    		// if the object is well-formed, also authorize the paramKind
    		if err := v.authorizeCreate(ctx, obj); err != nil {
    			errs = append(errs, field.Forbidden(field.NewPath("spec", "paramKind"), err.Error()))
    		}
    	}
    	return errs
    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pkg/security/apparmor/validate_test.go

    		{v1.DeprecatedAppArmorBetaProfileNamePrefix + "foo-container", true},
    		{v1.DeprecatedAppArmorBetaProfileNamePrefix + "/usr/sbin/ntpd", true},
    		{v1.DeprecatedAppArmorBetaProfileNamePrefix + "", false}, // Empty profile explicitly forbidden.
    		{v1.DeprecatedAppArmorBetaProfileNamePrefix + " ", false},
    	}
    
    	for _, test := range tests {
    		err := v.Validate(getPodWithProfile(test.profile))
    		if test.expectValid {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/crypto/tls/bogo_config.json

            "UnsolicitedServerNameAck-TLS-TLS13": "TODO: first pass, this should be fixed",
            "RenegotiationInfo-Forbidden-TLS13": "TODO: first pass, this should be fixed",
            "EMS-Forbidden-TLS13": "TODO: first pass, this should be fixed",
            "SendUnsolicitedOCSPOnCertificate-TLS13": "TODO: first pass, this should be fixed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. tests/integration/helm/install_test.go

    		Run(setupInstallationWithCustomCheck(overrideValuesStr, false, DefaultNamespaceConfig, func(t framework.TestContext) {
    			// Try to apply an EnvoyFilter (it should be rejected)
    			expectedErrorPrefix := `%s "sample" is forbidden: ValidatingAdmissionPolicy 'stable-channel-default-policy.istio.io' ` +
    				`with binding 'stable-channel-default-policy-binding.istio.io' denied request`
    			err := t.ConfigIstio().Eval("default", nil, sampleEnvoyFilter).Apply()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top