Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

        List<File> getLibraryPath();
    
        void libraryPath(File... libraryPath);
    
        void libraryPath(List<File> libraryPath);
    
        File getOutputFile();
    
        void setOutputFile(File outputFile);
    
        boolean isDebuggable();
    
        void setDebuggable(boolean debuggable);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/api/tasks/WriteProperties.java

         */
        @Deprecated
        public void setOutputFile(File outputFile) {
            deprecationWarning();
            getDestinationFile().set(outputFile);
        }
    
        /**
         * Sets the output file to write the properties to.
         *
         * @deprecated Use {@link #getDestinationFile()} instead.
         */
        @Deprecated
        public void setOutputFile(Object outputFile) {
            deprecationWarning();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/TextReportRendererSpec.groovy

        def "writes report to a file"() {
            when:
            File outFile = new File(temporaryFolder.getTestDirectory(), "report.txt");
            renderer.setOutputFile(outFile);
    
            then:
            renderer.textOutput instanceof StreamingStyledTextOutput
    
            when:
            renderer.complete();
    
            then:
            outFile.file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 12 02:45:12 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TextReportRenderer.java

            this.clientMetaData = clientMetaData;
        }
    
        @Override
        public void setOutput(StyledTextOutput textOutput) {
            setWriter(textOutput, false);
        }
    
        @Override
        public void setOutputFile(File file) throws IOException {
            cleanupWriter();
            setWriter(new StreamingStyledTextOutput(new BufferedWriter(new FileWriter(file))), true);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 3.5K bytes
    - Viewed (0)
Back to top