Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for getClientMetaData (0.36 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/BuildEnvironmentReportTask.java

        private Configuration classpathConfiguration() {
            return getProject().getBuildscript().getConfigurations().getByName(ScriptHandler.CLASSPATH_CONFIGURATION);
        }
    
        @Inject
        protected BuildClientMetaData getClientMetaData() {
            throw new UnsupportedOperationException();
        }
    
        @Inject
        protected StyledTextOutputFactory getTextOutputFactory() {
            throw new UnsupportedOperationException();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractReportTask.java

            getOutputs().upToDateWhen(element -> false);
            projects = new HashSet<>();
            projects.add(getProject());
        }
    
        @Inject
        protected BuildClientMetaData getClientMetaData() {
            throw new UnsupportedOperationException();
        }
    
        @Inject
        protected StyledTextOutputFactory getTextOutputFactory() {
            throw new UnsupportedOperationException();
        }
    
    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. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/ReportGenerator.java

            ReportMarginaliaAction projectReportFooterGenerator
        ) {
            try {
                ReportRenderer renderer = getRenderer();
                renderer.setClientMetaData(getClientMetaData());
                File outputFile = getOutputFile();
                if (outputFile != null) {
                    renderer.setOutputFile(outputFile);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/BaseSelectionException.java

            this.targetName = targetName;
        }
    
        @Override
        public void appendResolutions(Context context) {
            context.appendResolution(output -> {
                output.text("Run ");
                context.getClientMetaData().describeCommand(output.withStyle(UserInput), taskName);
                output.text(" to get a list of available " + targetName + ".");
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 11:25:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ConventionReportTask.java

            this.projects.set(projects);
        }
    
        ReportGenerator reportGenerator() {
            return new ReportGenerator(
                getRenderer(),
                getClientMetaData(),
                getOutputFile(),
                getTextOutputFactory()
            );
        }
    
        void logClickableOutputFileUrl() {
            if (shouldCreateReportFile()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 11 10:37:35 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/exceptions/FailureResolutionAware.java

     */
    public interface FailureResolutionAware {
    
        void appendResolutions(Context context);
    
        interface Context {
            BuildClientMetaData getClientMetaData();
    
            /**
             * Indicates that the build definition is missing.
             */
            void doNotSuggestResolutionsThatRequireBuildDefinition();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 13:10:39 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/configuration/Help.java

        }
    
        @Inject
        protected StyledTextOutputFactory getTextOutputFactory() {
            throw new UnsupportedOperationException();
        }
    
        @Inject
        protected BuildClientMetaData getClientMetaData() {
            throw new UnsupportedOperationException();
        }
    
        @Inject
        protected BuildTaskSelector.BuildSpecificSelector getTaskSelector() {
            throw new UnsupportedOperationException();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/commandline/TaskConfigurationException.java

            this.taskPath = taskPath;
        }
    
        @Override
        public void appendResolutions(Context context) {
            context.appendResolution(output -> {
                output.text("Run ");
                context.getClientMetaData().describeCommand(output.withStyle(UserInput), ProjectInternal.HELP_TASK);
                output.withStyle(UserInput).format(" --task %s", taskPath);
                output.text(" to get task usage details.");
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 28 05:00:22 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TextReportRenderer.java

                if (close) {
                    CompositeStoppable.stoppable(textOutput).stop();
                }
            } finally {
                textOutput = null;
            }
        }
    
        public BuildClientMetaData getClientMetaData() {
            return clientMetaData;
        }
    
        public StyledTextOutput getTextOutput() {
            return textOutput;
        }
    
        public TextReportBuilder getBuilder() {
            return builder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/build/BuildLayoutValidator.java

                context.doNotSuggestResolutionsThatRequireBuildDefinition();
                context.appendResolution(output -> {
                    output.text("Run ");
                    context.getClientMetaData().describeCommand(output.withStyle(UserInput), "init");
                    output.text(" to create a new Gradle build in this directory.");
                });
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 07:26:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top