Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 456 for OutputFile (0.16 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultLinkerSpec.java

            this.libraryPath.addAll(libraryPath);
        }
    
        @Override
        public File getOutputFile() {
            return outputFile;
        }
    
        @Override
        public void setOutputFile(File outputFile) {
            this.outputFile = outputFile;
        }
    
        private void addAll(List<File> list, Iterable<File> iterable) {
            for (File file : iterable) {
                list.add(file);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractReportTask.java

         */
        @Nullable
        @Optional
        @OutputFile
        public File getOutputFile() {
            return outputFile;
        }
    
        /**
         * Sets the file which the report will be written to. Set this to {@code null} to write the report to {@code System.out}.
         *
         * @param outputFile The output file. May be null.
         */
        public void setOutputFile(@Nullable File outputFile) {
            this.outputFile = outputFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. .teamcity/.mvn/wrapper/MavenWrapperDownloader.java

            }
            System.out.println("- Downloading from: " + url);
    
            File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
            if(!outputFile.getParentFile().exists()) {
                if(!outputFile.getParentFile().mkdirs()) {
                    System.out.println(
                            "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

            then:
            executedAndNotSkipped ":run"
    
            when:
            def secondInputFile = file("second-input.txt")
            secondInputFile.text = inputFile.text
            run "run", "-PinputFile=${secondInputFile.absolutePath}", "-PoutputFile=${outputFile.absolutePath}"
            then:
            outputFile.text == "first"
            skipped ":run"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/file/TaskFilePropertiesIntegrationTest.groovy

                    Path inputFile
                    @InputDirectory
                    Path inputDir
                    @OutputFile
                    Path outputFile
                    @OutputDirectory
                    Path outputDir
    
                    @TaskAction
                    def go() {
                        outputFile.toFile().text = inputFile.toFile().text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/WritePropertiesIntegrationTest.groovy

            "outputFile"        | { s -> s.runProps() }
        }
    
        def "unicode characters are escaped when #description"() {
            given:
            buildFile << """
                task props(type: WriteProperties) {
                    properties = [név: "Rezső"]
                    comment = "Eső leső"
                    $encoding
                    outputFile = file("output.properties")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 13:03:22 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/AbstractFilePropertyJavaInterOpIntegrationTest.groovy

                    }
                }
            """
            pluginDir.file("src/main/java/Params.java") << """
                import ${RegularFileProperty.name};
                import ${OutputFile.name};
    
                public interface Params {
                    @OutputFile
                    RegularFileProperty getOutFile();
                }
            """
            taskWithNestedBeanDefinition()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectLayoutIntegrationTest.groovy

                    @OutputFile
                    abstract RegularFileProperty getDirName()
    
                    @TaskAction
                    def produce() {
                        dirName.get().asFile.text = 'dir'
                    }
                }
    
                abstract class Consumer extends DefaultTask {
    
                    @OutputFile
                    abstract RegularFileProperty getOutputFile()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/BuildDashboardGenerator.java

    import java.util.TreeSet;
    
    public class BuildDashboardGenerator extends ReportRenderer<Collection<Report>, File> {
        private Set<Report> reports;
        private File outputFile;
    
        @Override
        public void render(Collection<Report> reports, final File outputFile) {
            this.reports = new TreeSet<Report>(new Comparator<Report>() {
                @Override
                public int compare(Report o1, Report o2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginRelocationTest.groovy

                    class CustomTask extends DefaultTask {
                        @InputFile @PathSensitive(PathSensitivity.NONE) File inputFile
                        @OutputFile File outputFile
                        @TaskAction void doSomething() {
                            outputFile.text = inputFile.text
                        }
                    }
                """
    
                file("src/main/groovy/CustomPlugin.groovy") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top