Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for defaultVariant (0.47 sec)

  1. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporterSpec.groovy

        }
    
        private static DefaultResolvedVariantResult defaultVariant(String ownerGroup = 'com', String ownerModule = 'foo', String ownerVersion = '1.0') {
            def ownerId = DefaultModuleComponentIdentifier.newId(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. tools/docker-builder/types.go

    // Tags will have the variant append (like 1.0-distroless).
    // The DefaultVariant is a special variant that has no explicit tag (like 1.0); it
    // is not a unique variant though. Currently, it represents DebugVariant.
    // If both DebugVariant and DefaultVariant are built, there will be a single build but multiple tags
    const (
    	// PrimaryVariant is the variant that DefaultVariant actually builds
    	PrimaryVariant = DebugVariant
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/VariantFilesMetadataRulesTest.groovy

            def metadata = mavenMetadataFactory.create(componentIdentifier, [])
            defaultVariant = metadata.addVariant("runtime", attributes)
            deps.each { name ->
                defaultVariant.addDependency("org.test", name, new DefaultMutableVersionConstraint("1.0"), [], null, ImmutableAttributes.EMPTY, [], false, null)
            }
            defaultVariant.addFile("producer-1.0.jar", "producer-1.0.jar")
            metadata
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractDependencyMetadataRulesTest.groovy

            defaultVariant = metadata.addVariant("default", attributes)
            deps.each { name ->
                if (addAllDependenciesAsConstraints()) {
                    defaultVariant.addDependencyConstraint("org.test", name, new DefaultMutableVersionConstraint("1.0"), null, ImmutableAttributes.EMPTY)
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:39:10 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. tools/docker-builder/docker.go

    	variants := sets.New(a.Variants...)
    	// hasDoubleDefault checks if we defined both DefaultVariant and PrimaryVariant. If we did, these
    	// are the same exact docker build, just requesting different tags. As an optimization, and to ensure
    	// byte-for-byte identical images, we will collapse these into a single build with multiple tags.
    	hasDoubleDefault := variants.Contains(DefaultVariant) && variants.Contains(PrimaryVariant)
    
    	allGroups := sets.New[string]()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

            def defaultVariant = createConfigurationMetadata("default", componentId, [], artifacts)
    
            def rootVariant = createConfigurationMetadata("root", componentId, defaultVariant.getDependencies(), [])
            resolveStateFactory.realizedStateFor(componentId, newId("group", "root", "1.0"), "release", attributesSchema, [defaultVariant, rootVariant])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
Back to top