Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 127 for insight (0.14 sec)

  1. 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)
  2. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyResultSorterSpec.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.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: Thu Nov 04 22:26:51 UTC 2021
    - 18.6K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    package graph
    
    import (
    	"fmt"
    	"io"
    	"math"
    	"path/filepath"
    	"strings"
    
    	"github.com/google/pprof/internal/measurement"
    )
    
    // DotAttributes contains details about the graph itself, giving
    // insight into how its elements should be rendered.
    type DotAttributes struct {
    	Nodes map[*Node]*DotNodeAttributes // A map allowing each Node to have its own visualization option
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K 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