Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 228 for propertyNames (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/UnmanagedPropertyMissingSetterException.java

        public UnmanagedPropertyMissingSetterException(String propertyName) {
            super(getMessage(propertyName));
        }
    
        private static String getMessage(String propertyName) {
            return String.format(
                "unmanaged property '%s' cannot be read only, unmanaged properties must have setters",
                propertyName);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/AbstractValidatingProperty.java

        private final String propertyName;
        private final PropertyValue value;
        private final boolean optional;
        private final ValidationAction validationAction;
    
        public AbstractValidatingProperty(String propertyName, PropertyValue value, boolean optional, ValidationAction validationAction) {
            this.propertyName = propertyName;
            this.value = value;
            this.optional = optional;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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