Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 217 for XValidations (0.21 sec)

  1. pkg/controller/validatingadmissionpolicystatus/controller_test.go

    						Resources:   resources,
    					},
    				},
    			},
    		},
    	}
    	return policy
    }
    
    func withValidations(validations []admissionregistrationv1.Validation, policy *admissionregistrationv1.ValidatingAdmissionPolicy) *admissionregistrationv1.ValidatingAdmissionPolicy {
    	policy.Spec.Validations = validations
    	return policy
    }
    
    func makePolicy(name string) *admissionregistrationv1.ValidatingAdmissionPolicy {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithPluginValidation.groovy

                validations.each {
                    it.verify()
                    if (!it.tested) {
                        throw new IllegalStateException("Incomplete specification for plugin '$it.pluginId': you must verify that validation either fails or passes")
                    }
                }
                def notValidated = (allPluginIds - validations*.reportId)
                    .collect { it.replace('_', '.') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:13:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractor.java

            List<DefaultModelSchemaExtractionContext<?>> validations = new ArrayList<>();
            Queue<DefaultModelSchemaExtractionContext<?>> unsatisfiedDependencies = new ArrayDeque<DefaultModelSchemaExtractionContext<?>>();
            DefaultModelSchemaExtractionContext<?> extractionContext = context;
            validations.add(extractionContext);
    
            while (extractionContext != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/bug_report.yml

          description: Tell us what issues you ran into.
          placeholder: Include information about what you tried, what you expected to happen, and what actually happened. The more details, the better!
        validations:
          required: true
      - type: textarea
        id: version
        attributes:
          label: Version
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 15:17:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/InvalidPublicationChecker.java

            return " If you did this intentionally you can disable this check by adding '" + suppressor + "' to the suppressed validations of the " + taskPath + " task. " +
                DOCUMENTATION_REGISTRY.getDocumentationRecommendationFor("on suppressing validations", "publishing_setup", "sec:suppressing_validation_errors");
        }
    
        private static final class VariantIdentity {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	// Validations contain CEL expressions which is used to apply the validation.
    	// Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is
    	// required.
    	// +listType=atomic
    	// +optional
    	Validations []Validation `json:"validations,omitempty" protobuf:"bytes,3,rep,name=validations"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java/javaGradlePlugin/readme.xml

    <sample>
        <para>
            This example demonstrates the use of the java gradle plugin development plugin.  By applying the plugin, the java plugin
            is automatically applied as well as the gradleApi() dependency.  Furthermore, validations are performed against the
            plugin metadata during jar execution.
        </para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 340 bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/10-proposal.yml

      - type: textarea
        id: proposal-details
        attributes:
          label: "Proposal Details"
          description: "Please provide the details of your proposal here."
        validations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 471 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    Applying the plugin automatically applies the <<java_library_plugin.adoc#java_library_plugin,Java Library(`java-library`)>> plugin and adds the `gradleApi()` dependency to the `api` configuration.
    It also adds some validations to the build.
    
    The following validations are performed:
    
    * There is a plugin descriptor defined for the plugin.
    * The plugin descriptor contains an `implementation-class` property.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // Required.
      optional MatchResources matchConstraints = 2;
    
      // Validations contain CEL expressions which is used to apply the validation.
      // Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is
      // required.
      // +listType=atomic
      // +optional
      repeated Validation validations = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top