Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Transitive (1.48 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        }
                    }
                    task checkRelease(dependsOn: configurations._compileFreeRelease) {
                        def files = configurations._compileFreeRelease
                        doLast {
                           assert files.collect { it.name } == ['b-bar.jar', 'd-transitive.jar']
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

        @Unroll("Selects direct=#expectedDirectVariant, transitive=[#expectedTransitiveVariantA, #expectedTransitiveVariantB], leaf=#expectedLeafVariant making sure dependency attribute value doesn't leak to transitives")
        def "Attribute value on dependency only affects selection of this dependency (using component metadata rules)"() {
            given:
            repository {
                def modules = ['direct', 'transitive', 'leaf']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    	// pruning is the pruning at which the requirement graph is computed.
    	//
    	// If unpruned, the graph includes all transitive requirements regardless
    	// of whether the requiring module supports pruning.
    	//
    	// If pruned, the graph includes only the root modules, the explicit
    	// requirements of those root modules, and the transitive requirements of only
    	// the root modules that do not support pruning.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                        String transitiveValue = attributes.getValue("transitive");
                        boolean transitive = (transitiveValue == null) || Boolean.parseBoolean(attributes.getValue("transitive"));
                        String deprecated = attributes.getValue("deprecated");
                        Configuration configuration = new Configuration(conf, visibility, description, extend, transitive, deprecated);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                return;
            }
    
            // Check if there are any transitive incoming edges at all. Don't traverse if not.
            if (transitiveEdgeCount == 0 && !isRoot() && canIgnoreExternalVariant()) {
                handleNonTransitiveNode(discoveredEdges);
                return;
            }
    
            // Determine the net exclusion for this node, by inspecting all transitive incoming edges
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    					// was only demoted from direct to indirect, it may still be in use via
    					// a transitive import.
    					unused = mg.Selected(m.Path) == "none"
    				} else {
    					// m is unused if it was dropped from the roots. If it is still present
    					// as a transitive dependency, that transitive dependency is not needed
    					// by any package or test in the main module.
    					_, ok := ld.requirements.rootSelected(m.Path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            // b will include 'leaf' through a transitive dependency
            mavenRepo.module("org", "b", "1.0").dependsOn("org", "b2", "1.0").publish()
            mavenRepo.module("org", "b2", "1.0").dependsOn("org", "leaf", "[3,5]").publish()
    
            // c will include 'leaf' through a 2d level transitive dependency
            mavenRepo.module("org", "c", "1.0").dependsOn("org", "c2", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            assert copy.name == original.name + "Copy${copyCount > 1 ? copyCount : ''}"
            assert copy.visible == original.visible
            assert copy.transitive == original.transitive
            assert copy.description == original.description
            assert copy.allArtifacts as Set == original.allArtifacts as Set
            assert copy.excludeRules == original.excludeRules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            }
            return this;
        }
    
        @Override
        public boolean isTransitive() {
            return transitive;
        }
    
        @Override
        public Configuration setTransitive(boolean transitive) {
            validateMutation(MutationType.DEPENDENCIES);
            this.transitive = transitive;
            return this;
        }
    
        @Override
        @Nullable
        public String getDescription() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            "1.5"          | "my.org.utils" | "GAV different, group only"
            "2.0"          | "my.org.utils" | "GAV different, version and group"
        }
    
        void "can replace transitive external dependency with project dependency"() {
            mavenRepo.module("org.utils", "impl", '1.5').dependsOn('org.utils', 'api', '1.5').publish()
            createDirs("api", "test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
Back to top