Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 146 for propertyNames (0.43 sec)

  1. 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)
  2. 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)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultInputFingerprinter.java

            @Override
            public void visitInputProperty(String propertyName, ValueSupplier value) {
                if (knownCurrentValueSnapshots.containsKey(propertyName)) {
                    return;
                }
                Object actualValue = value.getValue();
                try {
                    ValueSnapshot previousSnapshot = previousValueSnapshots.get(propertyName);
                    if (previousSnapshot == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultDynamicLookupRoutine.java

        @Override
        public Object property(DynamicObject receiver, String propertyName) throws MissingPropertyException {
            return receiver.getProperty(propertyName);
        }
    
        @Override
        public @Nullable Object findProperty(DynamicObject receiver, String propertyName) {
            DynamicInvokeResult dynamicInvokeResult = receiver.tryGetProperty(propertyName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:49:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/FilePropertyContainer.java

            if (changed) {
                for (T propertySpec : properties) {
                    String propertyName = propertySpec.getPropertyName();
                    if (propertyName == null) {
                        propertyName = "$" + ++unnamedPropertyCounter;
                        propertySpec.withPropertyName(propertyName);
                    }
                }
                changed = false;
            }
            return properties.iterator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/KtFirJavaSyntheticPropertySymbolPointer.kt

        private val propertyName: Name,
        private val isSynthetic: Boolean,
    ) : KaFirMemberSymbolPointer<KaSyntheticJavaPropertySymbol>(ownerPointer) {
        override fun KaFirSession.chooseCandidateAndCreateSymbol(
            candidates: FirScope,
            firSession: FirSession,
        ): KaSyntheticJavaPropertySymbol? {
            val syntheticProperty = candidates.getProperties(propertyName)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/RuntimePropertyResolver.kt

        private
        fun getterName(propertyName: String) = "get" + capitalize(propertyName)
    
        private
        fun setterName(propertyName: String) = "set" + capitalize(propertyName)
    
        private
        fun capitalize(propertyName: String) = propertyName.replaceFirstChar {
            if (it.isLowerCase()) it.uppercaseChar() else it
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 17:34:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGenerator.java

            private final List<ReplacedAccessor> replacedAccessors;
    
            public UpgradedProperty(String containingType, String propertyName, String methodName, String methodDescriptor, List<ReplacedAccessor> replacedAccessors) {
                this.containingType = containingType;
                this.propertyName = propertyName;
                this.methodName = methodName;
                this.methodDescriptor = methodDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NestedValidationUtil.java

         * requirements.
         *
         * @param validationContext the validation context
         * @param propertyName the name of the property
         * @param beanType the type of the bean
         */
        public static void validateBeanType(
            TypeValidationContext validationContext,
            String propertyName,
            Class<?> beanType
        ) {
            getUnsupportedReason(beanType).ifPresent(reason ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/PropertyVisitor.java

    public interface PropertyVisitor {
        default void visitInputFileProperty(String propertyName, boolean optional, InputBehavior behavior, DirectorySensitivity directorySensitivity, LineEndingSensitivity lineEndingSensitivity, @Nullable FileNormalizer fileNormalizer, PropertyValue value, InputFilePropertyType filePropertyType) {}
    
        default void visitInputProperty(String propertyName, PropertyValue value, boolean optional) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top