Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for inputFile (0.19 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

        }
    
        def "reports type validation failure"() {
            enableProblemsApiCheck()
            buildFile << '''
                class CustomTask extends DefaultTask {
                    @InputFile File srcFile
                    @OutputFile File destFile
    
                    @TaskAction
                    void action() {}
                }
    
                task custom(type: CustomTask)
            '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

    import com.google.common.collect.Lists;
    import com.google.common.collect.Sets;
    import org.gradle.api.Incubating;
    import org.gradle.api.tasks.Classpath;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.InputFile;
    import org.gradle.api.tasks.Optional;
    import org.gradle.api.tasks.PathSensitive;
    import org.gradle.external.javadoc.internal.GroupsJavadocOptionFileOption;
    import org.gradle.external.javadoc.internal.JavadocOptionFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

         * <p>When the value or value content of this provider is not known until execution time then returns a {@link Provider} representing the calculation to perform at execution time.
         * For example, the value content of an @InputFile property of a task is not known when that input file is the output of another a task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyLifecycleIntegrationTest.groovy

            failure.assertHasCause("The value for task ':show' property 'prop' is final and cannot be changed any further.")
    
            where:
            annotation    | _
            "@InputFile"  | _
            "@OutputFile" | _
        }
    
        def "task #annotation directory property is implicitly finalized when task starts execution"() {
            buildFile << """
                class SomeTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/analyzers_test.go

    		skipAll: true,
    	},
    	{
    		name:       "deprecation",
    		inputFiles: []string{"testdata/deprecation.yaml"},
    		analyzer:   &deprecation.FieldAnalyzer{},
    		expected: []message{
    			{msg.Deprecated, "VirtualService foo/productpage"},
    			{msg.Deprecated, "Sidecar default/no-selector"},
    		},
    	},
    	{
    		name:       "externalControlPlaneMissingWebhooks",
    		inputFiles: []string{"testdata/externalcontrolplane-missing-urls.yaml"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/TransformFixture.groovy

                    import ${ConfigurableFileCollection.name};
                    import ${InputFiles.name};
                    import ${PathSensitive.name};
                    import ${PathSensitivity.name};
                    import ${TaskAction.name};
    
                    public abstract class ResolveTask extends DefaultTask {
                        @InputFiles
                        @PathSensitive(PathSensitivity.NONE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

        }
    
        private static ClassPath fromInstrumentingArtifactTransformOutput(List<File> inputFiles) {
            Map<File, File> transformedEntries = Maps.newLinkedHashMapWithExpectedSize(inputFiles.size());
            for (int i = 0; i < inputFiles.size();) {
                File markerFile = inputFiles.get(i++);
                FileMarker fileMarker = FileMarker.of(markerFile.getName());
                switch (fileMarker) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

            )
        }
    
        def "creates JAR file for input directory"() {
            given:
            def inputFilesDir = tmpDir.createDir('inputFiles')
            writeClass(inputFilesDir, "org/gradle/MyClass")
    
            when:
            relocatedJarCreator.create(outputJar, [inputFilesDir])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

                inputFiles: [(COLOR): Color]
            ]
        }
    
        @SuppressWarnings("unused")
        class WithBothFieldAndGetterAnnotationButIrrelevant {
            @Irrelevant
            FileCollection inputFiles
    
            @Irrelevant
            @Color
            FileCollection getInputFiles() {
                return inputFiles
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskPropertiesIntegrationTest.groovy

                import org.gradle.api.DefaultTask;
                import org.gradle.api.tasks.InputFiles;
    
                abstract class AbstractCustomTask extends DefaultTask {
                    private final ConfigurableFileCollection sourceFiles = getProject().files();
    
                    @InputFiles
                    public ConfigurableFileCollection getSourceFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top