Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 268 for propertyNames (0.34 sec)

  1. 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)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

                    addSystemPropertyIfExist(result, key, value)
                }
            }
    
            private void addSystemPropertyIfExist(List<String> result, String propertyName, Object propertyValue) {
                if (propertyValue != null) {
                    result.add("-D${propertyName}=${propertyValue}".toString())
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

                    'Mark property \'destFile\' as optional',
                ]
                additionalData.asMap == [
                    'typeName' : 'CustomTask',
                    'propertyName' : 'destFile',
                ]
            }
            verifyAll(receivedProblem(1)) {
                fqid == 'validation:property-validation:value-not-set'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

        private RuntimeException decorateSnapshottingException(String propertyType, String propertyName, Throwable cause) {
            if (!(cause instanceof UncheckedIOException || cause instanceof org.gradle.api.UncheckedIOException)) {
                return UncheckedException.throwAsUncheckedException(cause);
            }
            boolean isDestinationDir = propertyName.equals("destinationDir");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                ].collect { it.toString() }
                additionalData.asMap == [
                    'typeName': 'org.gradle.api.DefaultTask',
                    'propertyName': 'input',
                ]
            }
    
            where:
            method | path             | fileType
            "file" | "input-dir"      | "file"
            "dir"  | "input-file.txt" | "directory"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K 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