Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 84 for Dependencies (0.23 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    	return rs.direct[path]
    }
    
    // A ModuleGraph represents the complete graph of module dependencies
    // of a main module.
    //
    // If the main module supports module graph pruning, the graph does not include
    // transitive dependencies of non-root (implicit) dependencies.
    type ModuleGraph struct {
    	g         *mvs.Graph
    	loadCache par.ErrCache[module.Version, *modFileSummary]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

    import org.gradle.internal.taskgraph.NodeIdentity
    import org.gradle.operations.dependencies.transforms.ExecutePlannedTransformStepBuildOperationType
    import org.gradle.operations.dependencies.transforms.ExecuteTransformActionBuildOperationType
    import org.gradle.operations.dependencies.transforms.IdentifyTransformExecutionProgressDetails
    import org.gradle.operations.dependencies.transforms.SnapshotTransformInputsBuildOperationType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                path 'xml -> core'
                path 'json -> core'
                path 'xml:1.1 -> core:1.1'
                path 'json:1.1 -> core:1.1'
            }
    
            given:
            buildFile << """
                dependencies {
                    conf 'org:xml:1.0'
                    conf 'org:json:1.1'
                }
            """
            and:
            "a rule which infers module set from group and version"()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    // dependencies of other roots named on the command line must be loaded, but are
    // not in "all". (The mod_notall test illustrates this behavior.)
    // Similarly, if the LoadTests flag is set but the "all" pattern does not close
    // over test dependencies, then when we load the test of a package that is in
    // "all" but outside the main module, the dependencies of that test will not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                List<Dependency> dependencies,
                boolean management,
                ModelBuilderRequest request) {
            Severity errOn30 = getSeverity(request, ModelBuilderRequest.VALIDATION_LEVEL_MAVEN_3_0);
    
            String prefix = management ? "dependencyManagement.dependencies.dependency." : "dependencies.dependency.";
    
            for (Dependency d : dependencies) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
            setupBuildWithColorTransform()
            buildFile << """
                project(':a') {
                    dependencies {
                        implementation project(':b')
                        implementation project(':c')
                    }
                }
                project(':b') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    // limitations under the License.
    
    [[verifying-dependencies]]
    = Verifying dependencies
    
    Working with external dependencies and plugins published on third-party repositories puts your build at risk.
    In particular, you need to be aware of what binaries are brought in transitively and if they are legit.
    To mitigate the security risks and avoid integrating compromised dependencies in your project, Gradle supports _dependency verification_.
    
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                List<Dependency> dependencies,
                boolean management,
                ModelBuildingRequest request) {
            Severity errOn30 = getSeverity(request, ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_3_0);
    
            String prefix = management ? "dependencyManagement.dependencies.dependency." : "dependencies.dependency.";
    
            for (Dependency d : dependencies) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    The -u flag instructs get to update modules providing dependencies
    of packages named on the command line to use newer minor or patch
    releases when available.
    
    The -u=patch flag (not -u patch) also instructs get to update dependencies,
    but changes the default to select patch releases.
    
    When the -t and -u flags are used together, get will update
    test dependencies as well.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            when:
            def dependencies = collection.buildDependencies.getDependencies(null)
    
            then:
            dependencies.toList() == [task]
            1 * taskResolver.resolveTask("c") >> task
            0 * _
        }
    
        def "task dependencies contains union of dependencies of nested file collections plus own dependencies"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top