Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for OutputFilePropertyType (0.18 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

                val filePropertyType = readEnum<OutputFilePropertyType>()
                task.outputs.run {
                    when (filePropertyType) {
                        OutputFilePropertyType.DIRECTORY -> dir(pack(propertyValue))
                        OutputFilePropertyType.DIRECTORIES -> dirs(pack(propertyValue))
                        OutputFilePropertyType.FILE -> file(pack(propertyValue))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskOutputs.java

    import org.gradle.api.specs.AndSpec;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.tasks.TaskOutputFilePropertyBuilder;
    import org.gradle.internal.properties.OutputFilePropertyType;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.properties.StaticValue;
    import org.gradle.internal.properties.bean.PropertyWalker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 04 09:46:14 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            1 * visitor.visitOutputFileProperty('outputFile', false, { it.call().path == 'output' }, OutputFilePropertyType.FILE)
            1 * visitor.visitOutputFileProperty('bean.outputDir', false, { it.call().path == 'outputDir' }, OutputFilePropertyType.DIRECTORY)
    
            1 * visitor.visitDestroyableProperty({ it.call().path == 'destroyed' })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

                            }
    
                            @Override
                            void visitOutputFileProperty(String propertyName, boolean optional, PropertyValue value, OutputFilePropertyType filePropertyType) {
                                outputFiles[propertyName] = layout.files(value)
                            }
                        })
                        inputFiles.each { propertyName, value ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/DetermineExecutionPlanAction.java

    import org.gradle.internal.graph.CachingDirectedGraphWalker;
    import org.gradle.internal.graph.DirectedGraphRenderer;
    import org.gradle.internal.logging.text.StyledTextOutput;
    import org.gradle.internal.properties.OutputFilePropertyType;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.properties.bean.PropertyWalker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

    import org.gradle.internal.operations.RunnableBuildOperation;
    import org.gradle.internal.properties.InputBehavior;
    import org.gradle.internal.properties.InputFilePropertyType;
    import org.gradle.internal.properties.OutputFilePropertyType;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.properties.bean.PropertyWalker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top