Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,459 for varints (0.18 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    				build.AddVariant(t.Variants())
    				exact = false
    				t = build.Make()
    			}
    			hasExtra = true
    		} else if _, ok := t.Extension('u'); ok {
    			// TODO: va may mean something else. Consider not considering it.
    			// Strip all but the 'va' entry.
    			old := t
    			variant := t.TypeForKey("va")
    			t = language.Tag{LangID: b, ScriptID: s, RegionID: r}
    			if variant != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithStaticLinkagePublishingIntegrationTest.groovy

            mainMetadata.variants.size() == 5
            def api = mainMetadata.variant("api")
            api.dependencies.empty
            api.files.size() == 1
            api.files[0].name == 'cpp-api-headers.zip'
            api.files[0].url == 'test-1.2-cpp-api-headers.zip'
            mainMetadata.variant("debugLink").availableAt.coords == "some.group:test_debug:1.2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. tools/docker-builder/types.go

    		if i.Name == n {
    			return &i
    		}
    	}
    	return nil
    }
    
    // Define variants, which control the base image of an image.
    // 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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

        }
    
        List<Variant> getVariants() {
            return variants
        }
    
        Variant variant(String name) {
            def matches = variants.findAll { it.name == name }
            assert matches.size() == 1 : "Variant '$name' not found in ${variants.name}"
            return matches.first()
        }
    
        Variant variant(String name, @DelegatesTo(value=Variant, strategy=Closure.DELEGATE_FIRST) Closure<Variant> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    [[sec:cpp_library_task_variants]]
    === Variant-dependent Tasks
    
    The {cpp} Library Plugin creates tasks based on variants of the library component.
    Read the <<building_cpp_projects.adoc#sec:introducing_build_variants-cpp,introduction to build variants>> for more information.
    The following diagrams show the relationship between variant-dependent tasks.
    
    .{cpp} Library Plugin variant-dependent task graph
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    [[sec:swift_library_task_variants]]
    === Variant-dependent Tasks
    
    The Swift Library Plugin creates tasks based on variants of the library component.
    Read the <<building_swift_projects.adoc#sec:introducing_build_variants-swift,introduction to build variants>> for more information.
    The following diagrams show the relationship between variant-dependent tasks.
    
    .Swift Library Plugin variant-dependent task graph
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

         * represents the attributes of the implicit variant. Any further elements of the inner array are explicit
         * sub-variants. The outer array is the collection of all consumable configurations being tested.
         *
         * @param candidates All configurations and their variants being matched against.
         * @param requested The requested attributes.
         *
         * @return The single matched variant.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            def variant = variants.find { it.name == name }
            if (variant == null) {
                variant = createVariant(name, [:])
            }
            action.resolveStrategy = Closure.DELEGATE_FIRST
            action.delegate = variant
            action()
            return this
        }
    
        @Override
        IvyModule withoutDefaultVariants() {
            variants.clear()
            return this
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelectionResult.java

            this.selectedByVariantAwareResolution = selectedByVariantAwareResolution;
        }
    
        public List<? extends VariantGraphResolveState> getVariants() {
            return variants;
        }
    
        public boolean isSelectedByVariantAwareResolution() {
            return selectedByVariantAwareResolution;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaIntegTest.groovy

            then:
            javaLibrary.parsedModuleMetadata.variant("apiElements") {
                noMoreDependencies()
            }
            javaLibrary.parsedModuleMetadata.variant("runtimeElements") {
                noMoreDependencies()
            }
            !javaLibrary.parsedModuleMetadata.variants.name.contains('optionalFeatureRuntimeElements')
            javaLibrary.parsedModuleMetadata.variant("optionalFeatureRuntimeElementsAlternate") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.7K bytes
    - Viewed (0)
Back to top