Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for moduleInsights (0.3 sec)

  1. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/script.js

                });
                return node;
            }
    
            // finds the moduleInsight by module among the given moduleInsights and returns its insight
            function findInsight(moduleInsights, module) {
                for (var i = 0; i < moduleInsights.length; i++) {
                    if (moduleInsights[i].module == module) {
                        return moduleInsights[i].insight;
                    }
                }
                return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 24 19:38:03 UTC 2020
    - 8.2K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/JsonProjectDependencyRenderer.java

     *                               same array as configurations.dependencies.children
     *                           ]
     *                       },
     *                       ...
     *                   ],
     *                   "moduleInsights : [
     *                       {
     *                           "module" : "group:name"
     *                           "insight" : [
     *                               {
     *                                   "name" : "...",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            then:
            json.project.configurations[0].moduleInsights.size() == 2
            json.project.configurations[0].moduleInsights.any { it.module == 'foo:bar' }
            json.project.configurations[0].moduleInsights.any { it.module == 'foo:baz' }
            def barInsight = json.project.configurations[0].moduleInsights.find({ it.module == 'foo:bar' }).insight
            barInsight.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
Back to top