Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 146 for propertyNames (0.16 sec)

  1. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

            return __modifiedProperties.getPropertyNames();
        }
    
        public void mymodifyProperty(String propertyName) {
            registerModifiedProperty(propertyName);
        }
    
        public void mymodifyPropertyCancel(String propertyName) {
            __modifiedProperties.remove(propertyName);
        }
    
        public void clearModifiedInfo() {
            __modifiedProperties.clear();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/TrackingDynamicLookupRoutine.kt

        override fun property(receiver: DynamicObject, propertyName: String): Any? =
            withDynamicCall(receiver) {
                receiver.getProperty(propertyName)
            }
    
        override fun findProperty(receiver: DynamicObject, propertyName: String): Any? =
            withDynamicCall(receiver) {
                val dynamicInvokeResult: DynamicInvokeResult = receiver.tryGetProperty(propertyName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

        public PropertyDescImpl(final String propertyName, final Class<?> propertyType, final Method readMethod, final Method writeMethod,
                final Field field, final BeanDesc beanDesc) {
            assertArgumentNotEmpty("propertyName", propertyName);
            assertArgumentNotNull("propertyType", propertyType);
            assertArgumentNotNull("beanDesc", beanDesc);
    
            this.propertyName = propertyName;
            this.propertyType = propertyType;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/InterceptScope.java

            return new NamedMemberScope(CallType.GET_PROPERTY, propertyName);
        }
    
        /**
         * The returned scope includes writes of all properties named {@code propertyName}.
         * This scope doesn't include calls to the setter method corresponding to this property,
         * use additional explicit {@link #methodsNamed(String)} scope to intercept that.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top