Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 161 for propertyNames (0.56 sec)

  1. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestBuildScopeServices.java

        }
    
        private static class EmptyGradleProperties implements GradleProperties {
            @Nullable
            @Override
            public Object find(String propertyName) {
                return null;
            }
    
            @Override
            public Map<String, Object> mergeProperties(Map<String, Object> properties) {
                return properties;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ScriptBlockBuilder.java

    import javax.annotation.Nullable;
    
    public interface ScriptBlockBuilder {
        /**
         * Adds a property assignment statement to this block
         */
        void propertyAssignment(@Nullable String comment, String propertyName, Object propertyValue, boolean assignOperator);
    
        /**
         * Adds a method invocation statement to this block
         */
        void methodInvocation(@Nullable String comment, String methodName, Object... methodArgs);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 03:37:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/FilePropertyVisitState.java

            for (Map.Entry<String, CurrentFileCollectionFingerprint> entry : inputFileProperties.entrySet()) {
                CurrentFileCollectionFingerprint fingerprint = entry.getValue();
    
                state.propertyName = entry.getKey();
                state.propertyHash = fingerprint.getHash();
                state.fingerprints = fingerprint.getFingerprints();
    
                visitor.preProperty(state);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerializationTest.groovy

            given:
            def problem = problemReporter.create {
                it.id("id", "label", GradleCoreProblemGroup.validation())
                    .additionalData(TypeValidationDataSpec.class) {
                        it.propertyName("property")
                        it.typeName("type")
                        it.parentPropertyName("parent")
                        it.pluginId("id")
                    }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/AccumulateBuildInputsListener.java

            Set<FilteredTree> filteredFileTreeTaskInputs = new LinkedHashSet<>();
            work.visitRegularInputs(new InputVisitor() {
                @Override
                public void visitInputFileProperty(String propertyName, InputBehavior behavior, InputFileValueSupplier value) {
                    if (relevantBehaviors.contains(behavior)) {
                        ((FileCollectionInternal) value.getFiles()).visitStructure(new FileCollectionStructureVisitor() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/HandleStaleOutputsStep.java

            Set<File> filesToDelete = new HashSet<>();
            work.visitOutputs(context.getWorkspace(), new UnitOfWork.OutputVisitor() {
                @Override
                public void visitOutputProperty(String propertyName, TreeType type, UnitOfWork.OutputFileValueSupplier value) {
                    Streams.stream(value.getFiles())
                        .filter(cleanupRegistry::isOutputOwnedByBuild)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

            }
    
            @Override
            boolean isPropertyRelevant() {
                return true
            }
    
            @Override
            void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor) {
                // NO OP
            }
        }
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.TYPE])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputFilePropertyBuilder.java

     */
    @HasInternalProtocol
    public interface TaskInputFilePropertyBuilder extends TaskFilePropertyBuilder {
        /**
         * {@inheritDoc}
         */
        @Override
        TaskInputFilePropertyBuilder withPropertyName(String propertyName);
    
        /**
         * Skip executing the task if the property contains no files.
         * If there are multiple properties with {code skipWhenEmpty = true}, then they all need to be empty for the task to be skipped.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSyntheticJavaPropertySymbol.kt

            KaFirJavaSyntheticPropertySymbolPointer(
                ownerPointer = analysisSession.createOwnerPointer(this),
                propertyName = name,
                isSynthetic = firSymbol is SyntheticSymbol,
            )
        }
    
        override fun equals(other: Any?): Boolean = symbolEquals(other)
        override fun hashCode(): Int = symbolHashCode()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGeneratorTest.groovy

                .contentsAsString(StandardCharsets.UTF_8)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top