Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 91 for insight (0.33 sec)

  1. 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)
  2. 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)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporterSpec.groovy

     * 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.result.ComponentSelectionReason
    import org.gradle.api.internal.artifacts.DefaultModuleIdentifier
    import org.gradle.api.internal.artifacts.DefaultModuleVersionIdentifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    This makes the dependency declarations in your build script and the <<viewing_debugging_dependencies.adoc#sec:identifying_reason_dependency_selection,dependency insight report>> easier to interpret.
    
    .Giving a reason for choosing a certain module version in a dependency declaration
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  5. src/math/big/natdiv.go

    focused on digit counting and seem needlessly complex, especially compared to
    the ones given above.
    
    Burnikel and Ziegler's “Fast Recursive Division” introduced the key insight of
    implementing division by an n-digit divisor using recursive calls to division
    by an n/2-digit divisor, relying on Karatsuba multiplication to yield a
    sub-quadratic run time. However, the presentation decisions are made almost
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle buildEnvironment
    ----
    
    Running the `dependencyInsight` task gives you an insight into a particular dependency (or dependencies) that match specified input:
    
    ----
    $ gradle dependencyInsight --dependency [...] --configuration [...]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                return Collections.singletonList(String.format(
                    "Run with %s --configuration %s --dependency %s to get more insight on how to solve the conflict.",
                    taskPath, configurationName, dependencyNotation
                ));
            }
        }
    
        private enum ProperMethodUsage {
            CONSUMABLE {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            failure.assertThatCause(containsString(CONFLICT_FOUND_HEADER_MESSAGE))
            failure.assertHasResolutions("Run with :tool:dependencyInsight --configuration runtimeClasspath " +
                "--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
    - 76.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    or _build_ (compile, link and test) a component or binary and its _dependents_ (things that depend upon the component or binary). The native software model provides tasks that enable this capability. First, the _dependent components_ report gives insight about the relationships between each component. Second, the _build and assemble dependents_ tasks allow you to assemble or build a component and its dependents in one step.
    
    In the following example, the build file defines `OpenSSL` as a...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	// goal, and subtract out everything else. This is of course impossible; the definition
    	// is circular! However, this impossible definition contains a key insight: the amount
    	// we're *going* to use matters just as much as whatever we're currently using.
    	//
    	// Consider if the heap shrinks to 1/10th its size, leaving behind lots of free and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top