Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for showTypes (0.18 sec)

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

            return "Tasks runnable from " + StringUtils.uncapitalize(header);
        }
    
        public void showDetail(boolean detail) {
            this.detail = detail;
        }
    
        public void showTypes(boolean showTypes) {
            this.showTypes = showTypes;
        }
    
        /**
         * Writes the default task names for the current project.
         *
         * @param defaultTaskNames The default task names (must not be null)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:53:41 UTC 2021
    - 5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.diagnostics.TaskReportTask.xml

                </tr>
                <tr>
                    <td>displayGroup</td>
                </tr>
                <tr>
                    <td>displayGroups</td>
                </tr>
                <tr>
                    <td>showTypes</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 734 bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/TaskReportTask.java

     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class TaskReportTask extends ConventionReportTask {
    
        private boolean detail;
        private final Property<Boolean> showTypes = getProject().getObjects().property(Boolean.class);
        private String group;
        private List<String> groups;
        private final Cached<TaskReportModel> model = Cached.of(this::computeTaskReportModel);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 9.7K bytes
    - Viewed (0)
Back to top