Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 241 for consuming (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

        if (!input_type.hasRank() || !output_type.hasRank()) return failure();
    
        // The pattern attempts to reduce the rank of the input to BroadcastTo.
        // Thus, we fail to match if the consuming reshape rank is larger.
        ArrayRef<int64_t> input_shape = input_type.getShape();
        if (reshape_shape.size() > input_shape.size()) return failure();
    
        // Extend the input shape with leading 1s to match the broadcast shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/userguide_single.adoc

    include::component_metadata_rules.adoc[leveloffset=+2]
    include::resolution_rules.adoc[leveloffset=+2]
    include::resolution_strategy_tuning.adoc[leveloffset=+2]
    
    == PRODUCING AND CONSUMING VARIANTS OF LIBRARIES
    
    include::component_capabilities.adoc[leveloffset=+2]
    include::feature_variants.adoc[leveloffset=+2]
    include::variant_model.adoc[leveloffset=+2]
    include::variant_attributes.adoc[leveloffset=+2]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/cryptobyte/string.go

    // length-prefixed, binary messages, including ASN.1 DER. (The asn1 subpackage
    // contains useful ASN.1 constants.)
    //
    // The String type is for parsing. It wraps a []byte slice and provides helper
    // functions for consuming structures, value by value.
    //
    // The Builder type is for constructing messages. It providers helper functions
    // for appending values and also for appending length-prefixed submessages –
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

             * Never empty.
             * Null if the task has no inputs.
             */
            @Nullable
            Map<String, byte[]> getInputValueHashesBytes();
    
            /**
             * The consuming visitor for file property inputs.
             * <p>
             * Properties are visited depth-first lexicographical.
             * Roots are visited in semantic order (i.e. the order in which they make up the file collection)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/mark_input_output_aliases.cc

          }
        } else {
          LLVM_DEBUG(llvm::dbgs()
                     << "No supported special parent found, using "
                        "tf_device.cluster_func outputs directly to search for "
                        "consuming AssignVariableOp.\n");
        }
      }
      return llvm::dyn_cast_or_null<TF::AssignVariableOp>(device_return);
    }
    
    // TODO(b/184420848): Explore relaxing these constraints.
    LogicalResult BuildAliasingInfo(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 04:14:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/VariantAwareResolutionWithConfigurationAttributesIntegrationTest.groovy

            notExecuted ':compileJavaFreeRelease'
            notExecuted ':compileJavaPaidDebug'
            notExecuted ':compileJavaPaidRelease'
        }
    
        @ToBeFixedForConfigurationCache
        def "consuming subproject variant builds the project with the appropriate tasks"() {
            given:
            subproject('core') {
                def buildDotGradle = file('build.gradle')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    include::sample[dir="snippets/java-feature-variant/requiring-features/groovy/producer",files="build.gradle[tags=producer]"]
    ====
    
    Then the consumer can declare a dependency on the MySQL support feature by doing this:
    
    .Consuming specific features in a multi-project build
    ====
    include::sample[dir="snippets/java-feature-variant/requiring-features/kotlin/consumer",files="build.gradle.kts[tags=consumer]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKuromojiTokenizerFactory.java

                        + "reset() called multiple times, or subclass does not call super.reset(). "
                        + "Please see Javadocs of TokenStream class for more information about the correct consuming workflow.");
            }
    
            @Override
            public void close() {
            }
        };
    
        protected final Field inputPendingField;
    
        protected final Field userDictionaryField;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    If you’d like to dive into the details, check out the <<core_dependency_management.adoc#dependency_management_in_gradle,introduction to dependency management>>.
    
    Gradle provides support for consuming pre-built binaries from Maven repositories published by Gradle footnote:[Unfortunately, Cocoapods repositories aren’t yet supported as core features].
    
    We will cover how to add dependencies between projects within a multi-build project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. src/net/http/transport_dial_test.go

    	}
    	if rt.conn != c {
    		rt.t.Fatalf("RoundTrip %v: want on conn %v, got conn %v", rt.roundTripID, c.connID, rt.conn.connID)
    	}
    }
    
    // finish completes a RoundTrip by sending the request body, consuming the response body,
    // and closing the response body.
    func (rt *transportDialTesterRoundTrip) finish() {
    	rt.t.Helper()
    
    	if rt.finished {
    		return
    	}
    	rt.finished = true
    
    	<-rt.done
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top