Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for transitive1 (0.25 sec)

  1. 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)
  2. src/cmd/go/internal/modload/buildlist.go

    // go.mod file:
    //
    //  1. (The import invariant.) Every module that provides a package transitively
    //     imported by any package or test in the main module is included as a root.
    //     This follows by induction from (1) and (3) above. Transitively-imported
    //     packages loaded during this invocation are marked with pkgInAll (1),
    //     and by hypothesis any transitively-imported packages loaded in previous
    //     invocations were already roots in rs (3).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. src/cmd/go/internal/modget/get.go

    			continue
    		}
    
    		// When we load imports, we detect the following conditions:
    		//
    		// - missing transitive dependencies that need to be resolved from outside the
    		//   current build list (note that these may add new matches for existing
    		//   pattern queries!)
    		//
    		// - transitive dependencies that didn't match any other query,
    		//   but need to be upgraded due to the -u flag
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top