Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 268 for propertyNames (0.28 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskInputsTest.groovy

                @Override
                void visitInputFileProperty(String propertyName, boolean optional, InputBehavior behavior, DirectorySensitivity emptyDirectorySensitivity, LineEndingSensitivity lineEndingNormalization, @Nullable FileNormalizer fileNormalizer, PropertyValue value, InputFilePropertyType filePropertyType) {
                    names += propertyName
                }
            })
            then:
            names == ['$1', '$2']
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/projection/ManagedModelProjection.java

                    private <T> T doGet(ModelProperty<T> property, String propertyName) {
                        ModelType<T> propertyType = property.getType();
    
                        // TODO we are relying on the registration having established these links, we should be checking
                        MutableModelNode propertyNode = modelNode.getLink(propertyName);
                        propertyNode.ensureUsable();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/InputPropertyAnnotationHandler.java

        @Override
        public boolean isPropertyRelevant() {
            return true;
        }
    
        @Override
        public void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor) {
            visitor.visitInputProperty(propertyName, value, propertyMetadata.isAnnotationPresent(Optional.class));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BroadcastChangingOutputsStep.java

            ImmutableList.Builder<String> builder = ImmutableList.builder();
            work.visitOutputs(context.getWorkspace(), new UnitOfWork.OutputVisitor() {
                @Override
                public void visitOutputProperty(String propertyName, TreeType type, UnitOfWork.OutputFileValueSupplier value) {
                    builder.add(value.getValue().getAbsolutePath());
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:23 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/PropertyAnnotationHandler.java

         */
        boolean isPropertyRelevant();
    
        /**
         * Visit the value of a property with this annotation attached.
         */
        void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor);
    
        /**
         * Visits problems associated with the given property, if any.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

        }
    
        def "logs deprecated property message"() {
            when:
            DeprecationLogger.deprecateProperty(DeprecationLogger, "propertyName").withAdvice("Advice.").willBeRemovedInGradle9().undocumented().nagUser()
    
            then:
            expectMessage "The DeprecationLogger.propertyName property has been deprecated. This is scheduled to be removed in Gradle ${NEXT_GRADLE_VERSION}. Advice."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

                }
            }
        }
    
        override fun flagRead(flag: FeatureFlag) {
            flag.systemPropertyName?.let { propertyName ->
                sink().systemPropertyRead(propertyName, System.getProperty(propertyName))
            }
        }
    
        fun append(fingerprint: ProjectSpecificFingerprint) {
            // TODO - should add to report as an input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbolProvider.kt

        public abstract fun getTypeAliasByClassId(classId: ClassId): KaTypeAliasSymbol?
    
        public abstract fun getTopLevelCallableSymbols(packageFqName: FqName, name: Name): Sequence<KaCallableSymbol>
    
        @Suppress("PropertyName")
        public abstract val ROOT_PACKAGE_SYMBOL: KaPackageSymbol
    }
    
    public typealias KtSymbolProvider = KaSymbolProvider
    
    public interface KaSymbolProviderMixIn : KaSessionMixIn {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                    if (accessorType != null) {
                        String propertyName = accessorType.propertyNameFor(name);
                        if (accessorType == PropertyAccessorType.IS_GETTER) {
                            booleanIsGetters.add(propertyName);
                        } else if (accessorType == PropertyAccessorType.GET_GETTER) {
                            booleanGetGetters.add(propertyName);
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

                final VaErrorHook hook) {
            if (values.length == 0) {
                return;
            }
            for (final String value : values) {
                if (value.indexOf(',') >= 0) {
                    action.throwValidationError(messages -> {
                        messages.addErrorsInvalidStrIsIncluded(propertyName, value, ",");
                    }, hook);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top