Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 281 for propertyNames (0.26 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultCachingStateFactory.java

            });
    
            beforeExecutionState.getInputProperties().forEach((propertyName, valueSnapshot) -> {
                if (logger.isWarnEnabled()) {
                    logger.warn("Appending input value fingerprint for '{}' to build cache key: {}",
                        propertyName, Hashing.hashHashable(valueSnapshot));
                }
                cacheKeyHasher.putString(propertyName);
                valueSnapshot.appendToHasher(cacheKeyHasher);
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/OverlappingOutputs.java

    public class OverlappingOutputs {
        private final String propertyName;
        private final String overlappedFilePath;
    
        public OverlappingOutputs(String propertyName, String overlappedFilePath) {
            this.propertyName = propertyName;
            this.overlappedFilePath = overlappedFilePath;
        }
    
        public String getPropertyName() {
            return propertyName;
        }
    
        public String getOverlappedFilePath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorFragments.kt

    }
    
    
    private
    fun fragmentsForConfiguration(accessor: Accessor.ForConfiguration): Fragments = accessor.run {
    
        val name = config.target
        val propertyName = name.original
        val className = "${propertyName.uppercaseFirstChar()}ConfigurationAccessorsKt"
        val (functionFlags, deprecationBlock) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/KotlinCompatibilityTest.java

                return null;
            }
    
            private Accessors(JavaClass owningClass, String propertyName, Set<JavaMethod> getters, Set<JavaMethod> setters) {
                this.getters = getters;
                this.setters = setters;
                this.owningClass = owningClass;
                this.propertyName = propertyName;
            }
    
            public boolean nullableIsSymmetric() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/ConventionMapping.java

    public interface ConventionMapping {
    
        MappedProperty map(String propertyName, Closure<?> value);
    
        MappedProperty map(String propertyName, Callable<?> value);
    
        /**
         * Mark a property as ineligible for convention mapping.
         */
        void ineligible(String propertyName);
    
        @Nullable
        <T> T getConventionValue(@Nullable T actualValue, String propertyName, boolean isExplicitValue);
    
        interface MappedProperty {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/IllegalPropertyRuntimeException.java

        private final String propertyName;
    
        /**
         * {@link IllegalPropertyRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
         * @param propertyName
         *            プロパティ名
         * @param cause
         *            原因となった例外
         */
        public IllegalPropertyRuntimeException(final Class<?> targetClass, final String propertyName, final Throwable cause) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/ConverterRuntimeException.java

            this.propertyName = propertyName;
            this.value = value;
        }
    
        /**
         * プロパティ名を返します。
         *
         * @return プロパティ名
         */
        public String getPropertyName() {
            return propertyName;
        }
    
        /**
         * 値を返します。
         *
         * @return 値
         */
        public Object getValue() {
            return value;
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultTaskProperties.java

                taskPropertySpecs.add(new DefaultFinalizingValidatingProperty(propertyName, value, optional, ValidationActions.inputValidationActionFor(filePropertyType)));
            }
    
            @Override
            public void visitInputProperty(String propertyName, PropertyValue value, boolean optional) {
                taskPropertySpecs.add(new DefaultValidatingProperty(propertyName, value, optional, ValidationActions.NO_OP));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/AbstractTaskFilePropertyRegistration.java

        @Override
        public boolean isOptional() {
            return optional;
        }
    
        public void setPropertyName(String propertyName) {
            if (propertyName.isEmpty()) {
                throw new IllegalArgumentException("Property name must not be empty string");
            }
            this.propertyName = propertyName;
        }
    
        public void setOptional(boolean optional) {
            this.optional = optional;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 18 11:32:10 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/util/NameUtil.java

        }
    
        public static String getterName(String propertyName, Type propertyType) {
            String prefix = propertyType.equals(Type.BOOLEAN_TYPE) || propertyType.getClassName().equals("java.lang.Boolean") ? "is" : "get";
            return prefix + TextUtil.capitalize(propertyName);
        }
    
        public static String setterName(String propertyName) {
            return "set" + TextUtil.capitalize(propertyName);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top