Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 822 for varints (0.18 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedVariantResult.java

         * The display name of this variant, for diagnostics.
         *
         * @since 4.6
         */
        String getDisplayName();
    
        /**
         * The capabilities provided by this variant
         *
         * @since 5.3
         */
        List<Capability> getCapabilities();
    
        /**
         * If present, this means that this variant is a bridge to another variant
         * found in another module. This corresponds to variants which are marked
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 00:34:16 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. src/encoding/binary/varint_test.go

    	testConstant(t, 64, MaxVarintLen64)
    }
    
    func testVarint(t *testing.T, x int64) {
    	buf := make([]byte, MaxVarintLen64)
    	n := PutVarint(buf, x)
    	y, m := Varint(buf[0:n])
    	if x != y {
    		t.Errorf("Varint(%d): got %d", x, y)
    	}
    	if n != m {
    		t.Errorf("Varint(%d): got n = %d; want %d", x, m, n)
    	}
    
    	buf2 := []byte("prefix")
    	buf2 = AppendVarint(buf2, x)
    	if string(buf2) != "prefix"+string(buf[:n]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 16 23:09:19 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConcurrentDerivationStrategyIntegTest.groovy

                          if (id instanceof ModuleComponentIdentifier) {
                              variants.each {
                                  println "\$id -> \${it.displayName}"
                                  if (it.displayName != 'default') {
                                      throw new AssertionError("Unexpected resolved variant \$it")
                                  }
                              }
                          }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantArtifactResolveState.java

         */
        ResolvedVariant resolveAdhocVariant(VariantArtifactResolver variantResolver, List<IvyArtifactName> dependencyArtifacts);
    
        /**
         * Get all artifact variants, or "sub-variants" of this variant.
         */
        Set<? extends VariantResolveMetadata> getArtifactVariants();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-variant-task-graph.png

    cpp-unit-test-variant-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryConsumptionIntegrationTest.groovy

    The only attribute distinguishing these variants is 'org.gradle.docstype'. Add this attribute to the consumer's configuration to resolve the ambiguity:
      - Value: 'javadoc' selects variant: 'javadocElements'
      - Value: 'sources' selects variant: 'sourcesElements'"""
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactVariantReselectionIntegrationTest.groovy

            // We request sources for a variant that does not have sources.
            // We should not fail, since variant reselection allows no matching variants.
            "without-sources" | "[]"
            // We request sources for a variant that has sources and expect those sources to be reselected.
            "with-sources"    | "[\"producer-1.0-with-sources-sources.jar\"]"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 19:46:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalConfigurationMetadata.java

        }
    
        @Override
        public LocalConfigurationMetadata prepareToResolveArtifacts() {
            artifacts.finalizeIfNotAlready();
            for (LocalVariantMetadata variant : variants) {
                variant.prepareToResolveArtifacts();
            }
            return this;
        }
    
        @Override
        public ImmutableList<LocalComponentArtifactMetadata> getArtifacts() {
            return artifacts.get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/OutgoingVariantsMutationIntegrationTest.groovy

        def "cannot mutate outgoing variants after configuration is resolved"() {
            given:
            buildFile << """
    
            configurations {
                compile {
                    attributes.attribute(usage, 'for compile')
                    outgoing {
                        artifact file('lib1.jar')
                        variants {
                            classes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantResolveMetadata.java

         */
        @Nullable
        Identifier getIdentifier();
    
        DisplayName asDescribable();
    
        @Override
        ImmutableAttributes getAttributes();
    
        ImmutableList<? extends ComponentArtifactMetadata> getArtifacts();
    
        @Override
        ImmutableCapabilities getCapabilities();
    
        boolean isExternalVariant();
    
        /**
         * Is this variant eligible for caching?
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top