Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 127 for insight (0.2 sec)

  1. platforms/documentation/docs/src/docs/release/notes-template.md

    -->
    
    We would like to thank the following community members for their contributions to this release of Gradle:
    
    Be sure to check out the [public roadmap](https://blog.gradle.org/roadmap-announcement) for insight into what's planned for future releases.
    
    ## Upgrade instructions
    
    Switch your build to use Gradle @version@ by updating your wrapper:
    
    `./gradlew wrapper --gradle-version=@version@`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/release/notes.md

    -->
    We would like to thank the following community members for their contributions to this release of Gradle:
    
    Be sure to check out the [public roadmap](https://blog.gradle.org/roadmap-announcement) for insight into what's planned for future releases.
    
    ## Upgrade instructions
    
    Switch your build to use Gradle @version@ by updating your wrapper:
    
    `./gradlew wrapper --gradle-version=@version@`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

      - org:foo between versions 1.1 and 1.0"""
            failure.assertHasResolutions("Run with :dependencyInsight --configuration conf " +
                "--dependency org:foo to get more insight on how to solve the conflict.",
                STACKTRACE_MESSAGE,
                INFO_DEBUG,
                SCAN,
                GET_HELP
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

    ----------
    buildEnvironment - Displays all buildscript dependencies declared in root project '$projectName'.
    dependencies - Displays all dependencies declared in root project '$projectName'.
    dependencyInsight - Displays the insight into a specific dependency in root project '$projectName'.
    help - Displays a help message.
    javaToolchains - Displays the detected java toolchains.
    outgoingVariants - Displays the outgoing variants of root project '$projectName'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    Help tasks
    ----------
    buildEnvironment - Displays all buildscript dependencies declared in project ':app'.
    dependencies - Displays all dependencies declared in project ':app'.
    dependencyInsight - Displays the insight into a specific dependency in project ':app'.
    help - Displays a help message.
    javaToolchains - Displays the detected java toolchains.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyResultSorter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.tasks.diagnostics.internal.insight;
    
    import org.gradle.api.artifacts.VersionConstraint;
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    import org.gradle.api.artifacts.component.ComponentSelector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:05 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.tasks.diagnostics.internal.insight;
    
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    import org.gradle.api.artifacts.result.ComponentSelectionCause;
    import org.gradle.api.artifacts.result.ComponentSelectionDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/AbstractCache.java

        throw new UnsupportedOperationException();
      }
    
      /**
       * {@inheritDoc}
       *
       * <p>This implementation of {@code getAllPresent} lacks any insight into the internal cache data
       * structure, and is thus forced to return the query keys instead of the cached keys. This is only
       * possible with an unsafe cast which requires {@code keys} to actually be of type {@code K}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/AbstractCache.java

        throw new UnsupportedOperationException();
      }
    
      /**
       * {@inheritDoc}
       *
       * <p>This implementation of {@code getAllPresent} lacks any insight into the internal cache data
       * structure, and is thus forced to return the query keys instead of the cached keys. This is only
       * possible with an unsafe cast which requires {@code keys} to actually be of type {@code K}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/plugins/HelpTasksPlugin.java

                this.projectName = projectName;
            }
    
            @Override
            public void execute(final DependencyInsightReportTask task) {
                task.setDescription("Displays the insight into a specific dependency in " + projectName + ".");
                task.setGroup(HELP_GROUP);
                task.setImpliesSubProjects(true);
                task.getShowingAllVariants().convention(false);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 30 16:15:23 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top