Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,533 for varints (0.15 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/ConsoleConfigurationReportRenderer.java

            }
        }
    
        private void writeSecondaryVariants(List<ReportSecondaryVariant> variants) {
            if (!variants.isEmpty()) {
                newLine();
                printSection("Secondary Variants (*)", () -> {
                    variants.forEach(variant -> {
                        newLine();
                        writeSecondaryVariant(variant);
                    });
                });
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 16:17:12 UTC 2022
    - 18.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/attributes/Category.java

    /**
     * This attribute describes the categories of variants for a given module.
     * <p>
     * Four values are found in published components:
     * <ul>
     *     <li>{@code library}: Indicates that the variant is a library, that usually means a binary and a set of dependencies</li>
     *     <li>{@code platform}: Indicates that the variant is a platform, that usually means a definition of dependency constraints</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 30 17:48:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top