Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getClientMetaData (1.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ProjectReportTask.java

                    }
                    renderer.completeChildren();
                }
            }
        }
    
        private void renderHelp(ProjectReportModel model) {
            BuildClientMetaData metaData = getClientMetaData();
            StyledTextOutput textOutput = getRenderer().getTextOutput();
    
            textOutput.println();
            textOutput.text("To see a list of the tasks of a project, run ");
            metaData.describeCommand(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

            public ContextImpl(BufferingStyledTextOutput resolution) {
                this.resolution = resolution;
            }
    
            @Override
            public BuildClientMetaData getClientMetaData() {
                return clientMetaData;
            }
    
            @Override
            public void doNotSuggestResolutionsThatRequireBuildDefinition() {
                missingBuild = true;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top