Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for produceDirs (0.34 sec)

  1. android/guava/src/com/google/common/util/concurrent/Futures.java

     * monitoring, debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <p>If you do chain your operations manually, you may want to use {@link FluentFuture}.
     *
     * @author Kevin Bourrillion
     * @author Nishant Thakkar
     * @author Sven Mawson
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Futures.java

     * monitoring, debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <p>If you do chain your operations manually, you may want to use {@link FluentFuture}.
     *
     * @author Kevin Bourrillion
     * @author Nishant Thakkar
     * @author Sven Mawson
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    Gradle provides the artifacts and dependencies from the `apiElements` variant to the consumer.
    
    == A more complicated example
    
    In the real world, consumers and producers have more than one attribute.
    
    A Java Library project in Gradle will involve several different attributes:
    
    - `org.gradle.usage` that describes how the variant is used
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                description: |-
                                  reason contains a programmatic identifier indicating the reason for the condition's last transition.
                                  Producers of specific condition types may define expected values and meanings for this field,
                                  and whether the values are considered a guaranteed API.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.cc

        // consumers to should_revisit, and these newly added nodes will also be
        // processed by this very same loop.  Since we're traversing the graph in
        // topological order (producers before consumers) and HandleNode(n) can only
        // ever add n's consumers to should_revisit, we won't "miss" an addition to
        // should_revisit.
        if (should_revisit[n->id()]) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      for (auto* n : arg_nodes) {
        int index;
        TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "index", &index));
        // Record out edges and remove `n` before adding those edges to RecvAtHost.
        // This is to avoid multiple producers.
        std::vector<OutEdgeInfo> out_edge_info;
        out_edge_info.reserve(n->out_edges().size());
        for (auto edge : n->out_edges()) {
          out_edge_info.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +kubebuilder:validation:Format=date-time
      optional Time lastTransitionTime = 4;
    
      // reason contains a programmatic identifier indicating the reason for the condition's last transition.
      // Producers of specific condition types may define expected values and meanings for this field,
      // and whether the values are considered a guaranteed API.
      // The value should be a CamelCase string.
      // This field may not be empty.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +kubebuilder:validation:Format=date-time
      optional Time lastTransitionTime = 4;
    
      // reason contains a programmatic identifier indicating the reason for the condition's last transition.
      // Producers of specific condition types may define expected values and meanings for this field,
      // and whether the values are considered a guaranteed API.
      // The value should be a CamelCase string.
      // This field may not be empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    }
    
    absl::StatusOr<bool>
    MarkForCompilationPassImpl::ClusteringWillIntroduceInterDeviceDependency(
        const Cluster& cluster_from, const Cluster& cluster_to) {
      // If any of the consumer's producers are on a different device, do not
      // cluster these nodes. This prevents other work on this device from being
      // delayed by work on other devices. We consider predecessors of the entire
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            ordinalGroups == [1, 0]
            assertTaskReady(destroyer, true)
            assertTaskReadyAndNoMoreToStart(producer)
            assertAllWorkComplete()
        }
    
        def "non-conflicting producers in all later groups can start once destroyer is complete"() {
            given:
            Task producer1 = task("producer1", type: AsyncWithOutputDirectory)
            _ * producer1.outputDirectory >> file("dir1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
Back to top