Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for setOutputFile (0.36 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

                    private Action<File> action;
    
                    @OutputFile
                    public File getOutputFile() {
                        return outputFile;
                    }
    
                    public void setOutputFile(File outputFile) {
                        this.outputFile = outputFile;
                    }
    
                    @Nested
                    public Action<File> getAction() {
                        return action;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/ReportGenerator.java

                ReportRenderer renderer = getRenderer();
                renderer.setClientMetaData(getClientMetaData());
                File outputFile = getOutputFile();
                if (outputFile != null) {
                    renderer.setOutputFile(outputFile);
                } else {
                    renderer.setOutput(getTextOutputFactory().create(getClass()));
                }
                projectReportHeaderGenerator.execute();
                for (T project : projects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                public void execute(GenerateEclipseProject task) {
                    task.setDescription("Generates the Eclipse project file.");
                    task.setInputFile(project.file(".project"));
                    task.setOutputFile(project.file(".project"));
                }
            });
            addWorker(task, ECLIPSE_PROJECT_TASK_NAME);
    
            project.getPlugins().withType(JavaBasePlugin.class, new Action<JavaBasePlugin>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/StripSymbols.java

            StripperSpec spec = new DefaultStripperSpec();
            spec.setBinaryFile(binaryFile.get().getAsFile());
            spec.setOutputFile(outputFile.get().getAsFile());
            spec.setOperationLogger(operationLogger);
    
            Compiler<StripperSpec> symbolStripper = createCompiler();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractReportTask.java

         * 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;
        }
    
        /**
         * Returns the set of project to generate this report for. By default, the report is generated for the task's
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

                    task.setDescription("Generates the Eclipse WTP component settings file.");
                    task.setInputFile(project.file(".settings/org.eclipse.wst.common.component"));
                    task.setOutputFile(project.file(".settings/org.eclipse.wst.common.component"));
                }
    
            });
            addWorker(task, ECLIPSE_WTP_COMPONENT_TASK_NAME);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ConventionReportTask.java

        /**
         * 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;
        }
    
        /**
         * Returns the set of project to generate this report for. By default, the report is generated for the task's
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 11 10:37:35 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/GeneratorTask.java

            return outputFile;
        }
    
        /**
         * Sets the output file to write the final configuration to.
         *
         * @param outputFile The output file.
         */
        public void setOutputFile(File outputFile) {
            this.outputFile = outputFile;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/CreateStaticLibrary.java

        @TaskAction
        protected void link() {
    
            StaticLibraryArchiverSpec spec = new DefaultStaticLibraryArchiverSpec();
            spec.setTempDir(getTemporaryDir());
            spec.setOutputFile(getOutputFile().get().getAsFile());
            spec.objectFiles(getSource());
            spec.args(getStaticLibArgs().get());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

                    @Override
                    public void execute(GenerateIdeaWorkspace task) {
                        task.setDescription("Generates an IDEA workspace file (IWS)");
                        task.setOutputFile(new File(project.getProjectDir(), project.getName() + ".iws"));
                    }
                });
                addWorker(task, IDEA_WORKSPACE_TASK_NAME, false);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
Back to top