Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,196 for Variant (0.3 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithoutComponentIntegrationTest.groovy

            return new CppSimpleUnitTest()
        }
    
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
            return [":compileTest${variant.capitalize()}Cpp", ":linkTest${variant.capitalize()}", ":installTest${variant.capitalize()}", ":runTest${variant.capitalize()}"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/variant_type_on_op.mlir

    func.func @main() -> tensor<!tf_type.variant<tensor<2xi32>>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 16 20:36:14 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

                .stream()
                .flatMap(variant -> variant.prepareForArtifactResolution().getArtifactVariants().stream())
                .map(variant -> new DefaultResolvedVariantResult(
                    component.getId(),
                    Describables.of(variant.getName()),
                    component.getAttributeDesugaring().desugar(variant.getAttributes().asImmutable()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/parse.go

    	return makeTag(tt), err
    }
    
    // Compose creates a Tag from individual parts, which may be of type Tag, Base,
    // Script, Region, Variant, []Variant, Extension, []Extension or error. If a
    // Base, Script or Region or slice of type Variant or Extension is passed more
    // than once, the latter will overwrite the former. Variants and Extensions are
    // accumulated, but if two extensions of the same type are passed, the latter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

        /**
         * Defines a 'blue' variant for the given module.
         */
        def <T extends MavenModule> T withColorVariants(T module) {
            module.adhocVariants().variant('runtime', [color: 'blue']).withModuleMetadata()
            return module
        }
    
        /**
         * Each project produces 'blue' variants and has a `resolve` task that resolves the 'green' variant. The 'blue' variant will contain
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithBothLibraryLinkageIntegrationTest.groovy

        }
    
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
            return [":compileDebugShared${variant.capitalize()}Cpp", ":compileTest${variant.capitalize()}Cpp", ":linkTest${variant.capitalize()}", ":installTest${variant.capitalize()}", ":runTest${variant.capitalize()}"]
        }
    
        @Override
        String getTestedComponentDsl() {
            return "library"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryPublishedTargetJvmEnvironmentIntegrationTest.groovy

            module.getArtifact(classifier: classifier).expectGet()
        }
    
        def "prefers standard JVM variant in Java projects"() {
            given:
            prepareResolve('compileClasspath', 'jre')
    
            when:
            run ':checkDeps'
    
            then:
            expectStandardJVM()
        }
    
        def "Prefers Android variant in Android projects"() {
            given:
            prepareResolve('releaseCompileClasspath', 'android')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithStaticLibraryLinkageIntegrationTest.groovy

        }
    
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
            return [":compileDebug${variant.capitalize()}Cpp", ":compileTest${variant.capitalize()}Cpp", ":linkTest${variant.capitalize()}", ":installTest${variant.capitalize()}", ":runTest${variant.capitalize()}"]
        }
    
        @Override
        String getTestedComponentDsl() {
            return "library"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

                                found = true
                                assert variants.size() == 1
                                assert variants[0].owner.module == 'moduleA'
                                def externalVariant = variants[0].externalVariant
                                assert !externalVariant.present
                            } else {
                                variants.each {
                                    assert !it.externalVariant.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. tools/docker-builder/docker.go

    			allDestinations.InsertAll(t.Tags...)
    
    			// See https://docs.docker.com/engine/reference/commandline/buildx_build/#output
    			if a.Push {
    				t.Outputs = []string{"type=registry"}
    			} else if a.Save {
    				n := target
    				if variant != "" && variant != DefaultVariant { // For default variant, we do not add it.
    					n += "-" + variant
    				}
    
    				tarFiles[n+a.suffix] = ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top