Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for inputFile (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

                    }
                }
    
                abstract class Consumer extends DefaultTask {
                    @InputFiles
                    abstract ListProperty<RegularFile> getInputFiles()
                    @TaskAction
                    def action() {
                        inputFiles.get().each {
                            println("action! on " + it)
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

        abstract void execute(String... tasks)
    
        abstract void cleanWorkspace()
    
        def "input files properties are sensitive to line endings by default (#api, #pathsensitivity)"() {
            createTaskWithNormalization(InputFiles, LineEndingSensitivity.DEFAULT, pathsensitivity, api)
    
            buildFile << """
                taskWithInputs {
                    sources.from(project.files("foo"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                def name = 'a'
                files.from { name }
    
                assert elements.get().asFile == [file('a')]
            """
    
            expect:
            succeeds()
        }
    
        def "task @InputFiles file collection closure is called once only when task executes"() {
            taskTypeWithInputFileCollection()
            buildFile """
                task merge(type: InputFilesTask) {
                    outFile = file("out.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top