Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getShortTypeName (0.11 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/configuration/TaskDetails.java

            this.options = options;
        }
    
        /**
         * The task type implementation Java class.
         */
        public String getTaskType() {
            return taskType;
        }
    
        public String getShortTypeName() {
            return shortTypeName;
        }
    
        @Nullable
        public String getDescription() {
            return description;
        }
    
        @Nullable
        public String getGroup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 11 10:07:07 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/configuration/TaskDetailPrinter.java

                output.println();
                final List<TaskDetails> tasksByType = detailsByTaskType.get(taskType);
                final TaskDetails anyTask = tasksByType.iterator().next();
                String shortTypeName = anyTask.getShortTypeName();
                final LinePrefixingStyledTextOutput pathOutput = createIndentedOutput(output, INDENT);
                pathOutput.println("Path" + getPluralEnding(tasksByType));
                for (TaskDetails task : tasksByType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 11:25:50 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top