Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 141 for varints (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentGraphResolveMetadata.java

     * be migrated to {@link ExternalComponentGraphResolveState}</p>
     */
    public interface ExternalComponentGraphResolveMetadata extends ComponentGraphResolveMetadata {
    
        /**
         * Returns the set of variants of this component to use for variant aware resolution of the dependency graph nodes.
         * May be empty, in which case selection falls back to an ecosystem-specific selection strategy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveState.java

        interface LocalComponentGraphSelectionCandidates extends GraphSelectionCandidates {
    
            /**
             * Get all variants that can be selected for this component. This includes both:
             * <ul>
             *     <li>Variant with attributes: those which can be selected through attribute matching</li>
             *     <li>Variant without attributes: those which can be selected by configuration name</li>
             * </ul>
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesMultiTargetIntegrationTest.groovy

            failure.assertThatCause(containsNormalizedString("The only attribute distinguishing these variants is 'org.gradle.testsuite.target.name'. Add this attribute to the consumer's configuration to resolve the ambiguity:"))
        }
    
        def "reports of multiple targets can be aggregated if variant information is specified"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalModuleDependencyMetadata.java

            return selectLegacyConfigurations(variantSelector, consumerAttributes, targetComponentState, consumerSchema);
        }
    
        /**
         * Select target graph variants in an ecosystem-dependent manner.
         *
         * This method is called when the target component does not have variants to select from.
         */
        protected abstract GraphVariantSelectionResult selectLegacyConfigurations(
            GraphVariantSelector variantSelector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationInternal.java

            }
        }
    
        interface VariantVisitor {
            // This configuration as a variant. May not always be present
            void visitOwnVariant(DisplayName displayName, ImmutableAttributes attributes, Collection<? extends PublishArtifact> artifacts);
    
            // A child variant. May not always be present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMavenModuleResolveMetadataTest.groovy

        }
    
        def "each configuration contains a single variant containing the status attribute and the artifacts of the configuration"() {
            when:
            def runtime = metadata.getConfiguration("runtime")
    
            then:
            runtime.variants.size() == 1
            def firstVariant = runtime.variants.first()
            assertHasOnlyStatusAttribute(firstVariant.attributes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/ResolvedComponentResultInternal.java

         */
        @Nullable
        String getRepositoryId();
    
        /**
         * Returns all the variants of this component available for selection. Does not include variants that cannot be consumed, which means this
         * may not include all the variants returned by {@link #getVariants()}.
         *
         * <p>
         * Note: for performance reasons,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/runtime/tracetype.go

    	// lots of varint sizes.
    	//
    	// Add 1 because we might also write a traceAllocFreeTypesBatch byte.
    	var flushed bool
    	w, flushed = w.ensure(1 + maxBytes)
    	if flushed {
    		// Annotate the batch as containing types.
    		w.byte(byte(traceAllocFreeTypesBatch))
    	}
    
    	// Emit type.
    	w.varint(uint64(node.id))
    	w.varint(uint64(uintptr(unsafe.Pointer(typ))))
    	w.varint(uint64(typ.Size()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentResultSerializerTest.groovy

            result.selectionReason == ComponentSelectionReasons.requested()
            result.moduleVersion == newId('org', 'foo', '2.0')
            for (def variants : [result.selectedVariants, result.availableVariants]) {
                variants.size() == 2
                variants[0] == v1Result
                variants[1] == v2Result
            }
            result.repositoryId == 'repoName'
        }
    
        private byte[] serialize(ResolvedGraphComponent component) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/decompose_optionals.mlir

          f = @identity} : (tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>>
      %2 = "tf.OptionalGetValue"(%1) : (tensor<!tf_type.variant<tensor<f32>>>) -> tensor<f32>
      %3 = "tf.OptionalNone"() : () -> tensor<!tf_type.variant<tensor<f32>>>
      return %2, %3 : tensor<f32>, tensor<!tf_type.variant<tensor<f32>>>
    }
    
    func.func private @identity(%arg0: tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top