Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 490 for Transitive (0.58 sec)

  1. src/cmd/go/testdata/script/vet_deps.txt

    # First run fills the cache.
    go vet a
    
    go vet -x a
    ! stderr 'transitive'
    
    -- a/a.go --
    package a
    
    import "b"
    
    func F() {
    	b.F()
    }
    
    -- b/b.go --
    package b
    
    import "transitive"
    
    func F() {
    	transitive.F()
    }
    
    -- transitive/c.go --
    package transitive
    
    func F() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 16:05:30 UTC 2019
    - 354 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-disableForConfiguration/groovy/build.gradle

    plugins {
        id 'java-library'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::transitive-per-configuration[]
    configurations.all {
        transitive = false
    }
    
    dependencies {
        implementation 'com.google.guava:guava:23.0'
    }
    // end::transitive-per-configuration[]
    
    tasks.register('copyLibs', Copy) {
        from configurations.compileClasspath
        into layout.buildDirectory.dir('libs')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 385 bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/attributes/Bundling.java

     *         Jar component:
     *         <ul>
     *             <li>{@code external} indicates that transitive dependencies are themselves component jars</li>
     *             <li>{@code embedded} indicates that transitive dependencies have been included inside the component jar, without modifying their packages</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptorDependency.groovy

        String module
        String revision
        String revisionConstraint
        Set<String> confs
        String transitive
        Collection<IvyDescriptorDependencyExclusion> exclusions = []
    
        boolean hasConf(String conf) {
            this.confs.contains(conf)
        }
    
        boolean transitiveEnabled() {
            transitive != 'false'
        }
    
        boolean hasExcludes() {
            exclusions
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/DependencyMapNotationConverterTest.groovy

            d.versionConstraint.preferredVersion == ''
            d.versionConstraint.strictVersion == ''
            d.versionConstraint.rejectedVersions == []
    
            !d.force
            !d.transitive
            !d.changing
    
            d.artifacts.size() == 1
            d.artifacts.find { it.name == 'gradle-core' && it.classifier == null && it.type == 'mytype' }
        }
    
        def "with classified artifact"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/LocalComponentDependencyMetadata.java

            List<IvyArtifactName> artifactNames,
            List<ExcludeMetadata> excludes,
            boolean force, boolean changing, boolean transitive, boolean constraint, boolean endorsing,
            @Nullable String reason
        ) {
            this(selector, dependencyConfiguration, artifactNames, excludes, force, changing, transitive, constraint, endorsing, false, reason);
        }
    
        public LocalComponentDependencyMetadata(
            ComponentSelector selector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/integtests/resolve/consistency/JavaProjectResolutionConsistencyIntegrationTest.groovy

                .dependsOn("org", "transitive", "1.0")
                .publish()
            def bar = mavenHttpRepo.module('org', 'bar', '1.0')
                .dependsOn("org", "transitive", "1.1")
                .publish()
            def transitive10 = mavenHttpRepo.module('org', 'transitive', '1.0').publish()
            def transitive11 = mavenHttpRepo.module('org', 'transitive', '1.1').publish()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java

        /**
         * Resolves the transitive dependencies of the specified project.
         *
         * @param project         The project whose dependencies should be resolved, must not be {@code null}.
         * @param scopesToResolve The dependency scopes that should be resolved, may be {@code null}.
         * @param session         The current build session, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java

            for (String id : sorter.getDependents(projectId)) {
                if (projectIds.add(id) && transitive) {
                    getDownstreamProjects(id, projectIds, transitive);
                }
            }
        }
    
        public List<MavenProject> getUpstreamProjects(MavenProject project, boolean transitive) {
            Objects.requireNonNull(project, "project cannot be null");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/MultiProjectVariantResolutionIntegrationTest.groovy

        }
    
        def 'consumer resolves jar variant of producer with dependencies'() {
            defineVariants(file('transitive'))
    
            defineVariants(file('direct'))
            file('direct/build.gradle') << '''
                dependencies {
                    jarElements project(":transitive")
                }
            '''
    
            file('producer/build.gradle') << '''
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top