Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for moduleSet (0.14 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            parent2.collectAncestorsStrictVersions([parent2Edge])
            child.collectAncestorsStrictVersions([edge1, edge2])
    
            then:
            child.ancestorsStrictVersionConstraints.getModules() == moduleSet('a', 'b')
            parent1.ancestorsStrictVersionConstraints == root.ownStrictVersionConstraints
            parent2.ancestorsStrictVersionConstraints == root.ownStrictVersionConstraints
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeFactory.java

        ModuleIdSetExclude moduleIdSet(Set<ModuleIdentifier> modules);
    
        GroupSetExclude groupSet(Set<String> groups);
    
        ModuleSetExclude moduleSet(Set<String> modules);
    
        default ExcludeSpec fromUnion(Set<ExcludeSpec> remainder) {
            if (remainder.isEmpty()) {
                // It's an intersection, and this method is always called on the remainder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 17:19:13 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Intersections.java

                    return factory.nothing();
                }
                if (modules.size() == 1) {
                    return factory.module(modules.iterator().next());
                }
                return factory.moduleSet(modules);
            }
        }
    
        @NonNullApi
        private static final class IntersectModuleSetWithGroupSet extends AbstractIntersection<ModuleSetExclude, GroupSetExclude> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. pkg/wasm/cache_test.go

    		name                   string
    		initialCachedModules   map[moduleKey]cacheEntry
    		initialCachedChecksums map[string]*checksumEntry
    		fetchURL               string
    		purgeInterval          time.Duration
    		wasmModuleExpiry       time.Duration
    		checkPurgeTimeout      time.Duration
    		getOptions             GetOptions
    		wantCachedModules      map[moduleKey]*cacheEntry
    		wantCachedChecksums    map[string]*checksumEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. pkg/wasm/cache.go

    	resourceVersionByResource map[string]string
    }
    
    type moduleKey struct {
    	// Identifier for the module. It should be neutral for the checksum.
    	// e.g.) oci://docker.io/test@sha256:0123456789 is not allowed.
    	//       oci://docker.io/test:latest (tagged form) is allowed.
    	name     string
    	checksum string
    }
    
    type cacheKey struct {
    	moduleKey
    	downloadURL string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

            def moduleE = mavenHttpRepo.module(GROUP_ID, 'e', VERSION).dependsOn(moduleB).dependsOn(moduleC).publish()
    
            buildFile << """
                ${mavenRepository(mavenHttpRepo)}
                ${customConfigDependencyAssignment(moduleD, moduleE)}
                ${configSyncTask()}
            """
    
            when:
            moduleD.pom.expectGet()
            moduleE.pom.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top