Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,097 for uvarint (0.23 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/tf_variant_type.mlir

    func.func @main(%arg0 : tensor<!tf_type.variant<tensor<2xi32>>>, %arg1: tensor<!tf_type.variant<tensor<*xi32>>>) -> tensor<!tf_type.variant<tensor<2xi32>>> {
      func.return %arg0 : tensor<!tf_type.variant<tensor<2xi32>>>
    }
    
    // CHECK:          func.func @main(%[[ARG0:.*]]: tensor<!tf_type.variant<tensor<2xi32>>>, %[[ARG1:.*]]: tensor<!tf_type.variant<tensor<*xi32>>>) -> tensor<!tf_type.variant<tensor<2xi32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 21:25:51 UTC 2024
    - 629 bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

            variant.dependencies[1].module == 'bar'
            variant.dependencies[1].version == null
            variant.dependencies[1].prefers == '1.0'
            variant.dependencies[1].strictly == null
            variant.dependencies[1].rejectsVersion == []
    
            variant.dependencies[2].group == 'org'
            variant.dependencies[2].module == 'baz'
            variant.dependencies[2].version == '2.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	HandSize int32 `json:"handSize" protobuf:"varint,2,opt,name=handSize"`
    
    	// `queueLengthLimit` is the maximum number of requests allowed to
    	// be waiting in a given queue of this priority level at a time;
    	// excess requests are rejected.  This value must be positive.  If
    	// not specified, it will be defaulted to 50.
    	// +optional
    	QueueLengthLimit int32 `json:"queueLengthLimit" protobuf:"varint,3,opt,name=queueLengthLimit"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenJavaModule.groovy

        }
    
        private static void assertAttributes(GradleModuleMetadata.Variant variant, Map<String, Object> expected) {
            assert variant.attributes.size() == expected.size()
            expected.each { attribute, value ->
                assert variant.attributes.containsKey(attribute)
                assert variant.attributes[attribute] == value
            }
        }
    
        void assertNoDependencies() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultLibraryBinaryDependencySpec.java

        private final String libraryName;
        private final String variant;
    
        public DefaultLibraryBinaryDependencySpec(String projectPath, String libraryName, String variant) {
            if (libraryName == null || projectPath == null || variant == null) {
                throw new IllegalDependencyNotation("A direct library binary dependency must have all of project, library name and variant specified.");
            }
            this.libraryName = libraryName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedVariantResult.java

    /**
     * The result of successfully resolving a component variant.
     *
     * @since 3.5
     */
    public interface ResolvedVariantResult {
        /**
         * The component which owns this variant.
         *
         * @return the component identifier of this variant
         * @since 6.8
         */
        ComponentIdentifier getOwner();
    
        /**
         * The attributes associated with this variant.
         */
        AttributeContainer getAttributes();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 00:34:16 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenScopesTestIntegTest.groovy

            then:
            gmmMetadata.parsedModuleMetadata.variant("apiElements") {
                noMoreDependencies()
            }
            gmmMetadata.parsedModuleMetadata.variant("runtimeElements") {
                noMoreDependencies()
            }
            gmmMetadata.parsedModuleMetadata.variant("custom") {
                dependency('log4j:log4j:1.2.17').exists()
                noMoreDependencies()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/VariantAspectExtractionIntegrationTest.groovy

    class VariantAspectExtractionIntegrationTest extends AbstractIntegrationSpec {
        def "variant annotation on property with illegal type raises error"() {
            buildFile << """
            @Managed
            interface SampleBinary extends BinarySpec {
                @Variant
                Integer getVariantProp()
                void setVariantProp(Integer variant)
            }
            class Rules extends RuleSource {
                @ComponentType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/func_attributes_multiple_callers.mlir

        func.return %4, %6 : tensor<!tf_type.variant>, tensor<!tf_type.variant>
      }
      // CHECK-LABEL: @funcB_renamed
      func.func private @funcB_renamed(%arg0: tensor<i64> {tf._user_specified_name = "args_0"}) -> tensor<!tf_type.variant> attributes {tf._original_func_name = "funcB", tf._tf_data_function = true, tf.signature.is_stateful} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 20:57:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/VariantMetadataRules.java

            /**
             * Executes the underlying action if the supplied variant matches.
             *
             * @param variant the variant metadata, used to check if the rule applies
             * @param subject the subject of the rule
             */
            public void maybeExecute(VariantResolveMetadata variant, T subject) {
                if (variantName == null || variantName.equals(variant.getName())) {
                    delegate.execute(subject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top