Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for moduleSet (0.13 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

            moduleIdSet(["g1", "m1"], ["g2", "m2"])                             | moduleSet("m1", "m2")                       | moduleSet("m1", "m2")
            moduleIdSet(["g1", "m1"], ["g2", "m2"], ["g3", "m3"])               | moduleSet("m1", "m2")                       | anyOf(moduleId("g3", "m3"), moduleSet("m1", "m2"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/IntersectionsTest.groovy

            module("foo")                                                                                                  | moduleSet("bar", "baz")                                                                                               | factory.nothing()...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactory.java

                // If there's more than one module, merge them into a module set
                if (moduleExcludes.size() > 1 || !moduleSetExcludes.isEmpty()) {
                    ModuleSetExclude excludeSpec = delegate.moduleSet(moduleExcludes.stream().map(ModuleExclude::getModule).collect(toSet()));
                    if (moduleSetExcludes.isEmpty()) {
                        moduleSetExcludes = ImmutableList.of(excludeSpec);
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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