Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 251 for GetOutput (0.2 sec)

  1. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/JvmPluginsHelper.java

            sourceDirectorySet.getDestinationDirectory().convention(target.getLayout().getBuildDirectory().dir(sourceSetChildPath));
    
            DefaultSourceSetOutput sourceSetOutput = Cast.cast(DefaultSourceSetOutput.class, sourceSet.getOutput());
            sourceSetOutput.getClassesDirs().from(sourceDirectorySet.getDestinationDirectory()).builtBy(compileTask);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

                final int exitValue = currentProcess.exitValue();
    
                if (logger.isInfoEnabled()) {
                    logger.info("ThumbnailGenerator: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput());
                }
                if (exitValue != 0) {
                    final StringBuilder out = new StringBuilder();
                    if (processTimeout) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/SuggestJob.java

                final int exitValue = currentProcess.exitValue();
    
                if (logger.isInfoEnabled()) {
                    logger.info("SuggestCreator: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput());
                }
                if (exitValue != 0) {
                    final StringBuilder out = new StringBuilder();
                    if (processTimeout) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/BuildDashboardGenerator.java

            final String cssLink = builder.requireResource(getClass().getResource("style.css"));
            new Html(builder.getOutput()) {{
                html();
                    head();
                        meta().httpEquiv("Content-Type").content("text/html; charset=utf-8");
                        meta().httpEquiv("x-ua-compatible").content("IE=edge");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/BuildResult.java

         *
         * @return the build output, or an empty string if there was no build output (e.g. ran with {@code -q})
         * @since 2.9
         */
        String getOutput();
    
        /**
         * The tasks that were part of the build.
         * <p>
         * The order of the tasks corresponds to the order in which the tasks were started.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/ProjectPageRenderer.java

            requireReportResource("d.gif", builder);
            requireReportResource("d.png", builder);
            requireReportResource("throbber.gif", builder);
    
            new Html(builder.getOutput()) {{
                html();
                    head();
                        meta().httpEquiv("Content-Type").content("text/html; charset=utf-8");
                        meta().httpEquiv("x-ua-compatible").content("IE=edge");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 03 18:14:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

        /**
         * Configures the runner to forward standard output from builds to the given writer.
         * <p>
         * The output of the build is always available via {@link BuildResult#getOutput()}.
         * This method can be used to additionally capture the output.
         * <p>
         * Calling this method will negate the effect of previously calling {@link #forwardOutput()}.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalRepositoryResourceAccessor.java

                this.hash = resourceHash;
            }
    
            @Override
            public String getInput() {
                return resource;
            }
    
            @Override
            public Long getOutput() {
                return hash;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/console/AbstractConsoleGroupedTaskFunctionalTest.groovy

                return new StyledOutput(this, color, attribute)
            }
    
            StyledOutput off() {
                return new StyledOutput(this, null, null)
            }
    
            String getOutput() {
                return stdoutUsesStyledText() ? styledOutput : plainOutput
            }
    
            String getErrorOutput() {
                return stderrUsesStyledText() ? styledOutput : plainOutput
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

        }
    
        @Override
        public ExecutionResult getIgnoreBuildSrc() {
            return new OutputScrapingExecutionResult(output, error, false);
        }
    
        @Override
        public String getOutput() {
            return output.withNormalizedEol();
        }
    
        /**
         * The main content with debug prefix and ANSI characters removed.
         */
        public LogContent getMainContent() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top