Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 268 for propertyNames (0.25 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureNonIncrementalStateBeforeExecutionStep.java

            work.visitOutputs(context.getWorkspace(), new UnitOfWork.OutputVisitor() {
                @Override
                public void visitOutputProperty(String propertyName, TreeType type, UnitOfWork.OutputFileValueSupplier value) {
                    builder.put(propertyName, FileSystemSnapshot.EMPTY);
                }
            });
            return builder.build();
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultInputFilePropertySpec.java

        public DefaultInputFilePropertySpec(
            String propertyName,
            FileNormalizer normalizer,
            FileCollectionInternal files,
            PropertyValue value,
            InputBehavior behavior,
            DirectorySensitivity directorySensitivity,
            LineEndingSensitivity lineEndingSensitivity
        ) {
            super(propertyName, normalizer, files);
            this.behavior = behavior;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultCacheableOutputFilePropertySpec.java

        private final TreeType outputType;
    
        public DefaultCacheableOutputFilePropertySpec(
            String propertyName,
            @Nullable String propertySuffix,
            FileCollectionInternal outputFiles,
            TreeType outputType
        ) {
            super(propertyName, OutputNormalizer.INSTANCE, outputFiles);
            this.propertySuffix = propertySuffix;
            this.outputType = outputType;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:23 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedExecutionAccessListener.kt

    ) : InstrumentedExecutionAccess.Listener {
    
        override fun disallowedAtExecutionInjectedServiceAccessed(injectedServiceType: Class<*>, propertyName: String, consumer: String) {
            executionAccessChecker.disallowedAtExecutionInjectedServiceAccessed(injectedServiceType, propertyName, consumer)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                                "methodName": "getSourceCompatibility",
                                "methodDescriptor": "()Lorg/gradle/api/provider/Property;",
                                "propertyName": "sourceCompatibility",
                                "replacedAccessors": [{
                                    "binaryCompatibility": "ACCESSORS_REMOVED",
                                    "descriptor": "()Ljava/lang/String;",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    // CELSchemaContext for propertyName.
    func (c *CELSchemaContext) ChildPropertyContext(propSchema *apiextensions.JSONSchemaProps, propertyName string) *CELSchemaContext {
    	if c == nil {
    		return nil
    	}
    	return c.childContext(propSchema, propertyTypeInfoAccessor{propertyName: propertyName})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/GetInputPropertiesVisitor.java

        private final ImmutableSortedSet.Builder<InputPropertySpec> inputProperties = ImmutableSortedSet.naturalOrder();
    
        @Override
        public void visitInputProperty(String propertyName, PropertyValue value, boolean optional) {
            inputProperties.add(new DefaultInputPropertySpec(propertyName, value));
        }
    
        public ImmutableSortedSet<InputPropertySpec> getProperties() {
            return inputProperties.build();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:56 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationAction.java

    public interface ValidationAction {
        /**
         * Validates the given property value according to some rule.
         *
         * @param propertyName
         * @param value a supplier of a non-null value - side effects are guaranteed to happen only once
         * @param context
         */
        void validate(String propertyName, @Nonnull Supplier<Object> value, PropertyValidationContext context);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 01:05:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilderTest.groovy

                .typeName("foo")
                .propertyName("bar")
                .build()
    
            expect:
            DefaultTypeAwareProblemBuilder.introductionFor(Optional.of(data), true) == "Property 'bar' "
        }
    
        def "render introduction with type"() {
            given:
            def data = DefaultTypeValidationData.builder()
                .typeName("foo")
                .propertyName("bar")
                .build()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/AbstractFilePropertySpec.java

        private final FileNormalizer normalizer;
        private final FileCollectionInternal files;
    
        public AbstractFilePropertySpec(String propertyName, FileNormalizer normalizer, FileCollectionInternal files) {
            super(propertyName);
            this.normalizer = normalizer;
            this.files = files;
        }
    
        @Override
        public FileNormalizer getNormalizer() {
            return normalizer;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top