Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Validation (0.15 sec)

  1. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerializationTest.groovy

            deserialized[0].definition.id.group.name == "validation"
            deserialized[0].definition.id.group.displayName == "Validation"
            deserialized[0].definition.id.group.parent == null
    
            deserialized[0].locations.isEmpty()
            deserialized[0].definition.documentationLink == null
        }
    
        def "can serialize and deserialize a validation problem with a location"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation' : 'Validation',
            'compilation' : 'Compilation',
            'deprecation' : 'Deprecation',
            'compilation:java' : 'Java compilation',
            'task-selection' : 'Task selection',
            'dependency-version-catalog' : 'Version catalog',
            'compilation:groovy-dsl' : 'Groovy DSL script compilation',
            'validation:property-validation' : 'Property validation problems',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/ProblemRecordingTypeValidationContext.java

    import org.gradle.api.problems.internal.Problem;
    import org.gradle.api.problems.internal.TypeValidationDataSpec;
    import org.gradle.internal.reflect.validation.DefaultTypeAwareProblemBuilder;
    import org.gradle.internal.reflect.validation.TypeAwareProblemBuilder;
    import org.gradle.internal.reflect.validation.TypeValidationContext;
    import org.gradle.plugin.use.PluginId;
    import org.gradle.problems.buildtree.ProblemStream;
    
    import javax.annotation.Nonnull;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/complete.go

    	"fmt"
    
    	"k8s.io/apimachinery/pkg/util/validation/field"
    )
    
    // validateStructuralCompleteness checks that all value validations in s have
    // a structural counterpart so that every value validation applies to a value
    // with a known schema:
    // - validations for specific properties must have that property (or additionalProperties under an option) structurally defined
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/envoyfilter.go

    		cpw.Value, err = xds.BuildXDSObjectFromStruct(cp.ApplyTo, cp.Patch.Value, false)
    		// There generally won't be an error here because validation catches mismatched types
    		// Should only happen in tests or without validation
    		if err != nil {
    			log.Errorf("envoyfilter %s/%s failed to build envoy filter value: %+v", local.Namespace, local.Name, err)
    			continue
    		}
    		if cp.Match == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/plugins/SoftwareTypeRegistrationPluginTarget.java

    import org.gradle.internal.exceptions.DefaultMultiCauseException;
    import org.gradle.internal.properties.annotations.TypeMetadata;
    import org.gradle.internal.reflect.DefaultTypeValidationContext;
    import org.gradle.internal.reflect.validation.TypeValidationProblemRenderer;
    import org.gradle.plugin.software.internal.SoftwareTypeRegistry;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Optional;
    import java.util.stream.Collectors;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/cluster/cluster.go

    	// Name of this cluster. Use for interacting with the cluster or validation against clusters.
    	// Use StableName instead of Name when creating subtests.
    	Name() string
    
    	// StableName gives a deterministic name for the cluster. Use this for test/subtest names to
    	// allow test grid to compare runs, even when the underlying cluster names are dynamic.
    	// Use Name for validation/interaction with the actual cluster.
    	StableName() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. cni/pkg/repair/netns.go

    	// There should be 1 or 2 processes that match: the pause container should always be there, and the istio-validation *might*.
    	// We want the pause container, as the istio-validation one may exit before we are done.
    	// We do this by detecting the longest running process. We could look at `cmdline`, but is likely more reliable to weird platforms.
    	for _, p := range procs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ListenerService.java

    /**
     * Attached to a service implementation to indicate that the instance should be registered as a listener.
     *
     * <p>Generally, it is better to use {@link StatefulListener}, which is lazy and applies some validation to ensure no events are missed.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface ListenerService {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/EventScope.java

     * Events are not visible to listeners in descendent scopes.
     *
     * <p>This annotation is used primarily to indicate to developers the scopes where this listener are available. There is also
     * some validation when a broadcaster or listener of this type is used in an incorrect scope.
     *
     * @see Scope
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface EventScope {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top