Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,905 for Consumes (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/ClassPathToClassLoaderCache.java

        public int size() {
            return cacheEntries.size();
        }
    
        public boolean isEmpty() {
            return cacheEntries.isEmpty();
        }
    
        /**
         * Provides execution of arbitrary code that consumes a cached class loader in a memory safe manner,
         * that is to say making sure that concurrent calls reuse the same classloader, or that the class loader
         * is retrieved from cache if available.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                blockingServer.expectConcurrent(":b:cPing")
                run ":a:aPing", ":b:cPing"
            }
        }
    
        def "explicit task dependency relationships are honored even if it violates destroys/creates/consumes relationships"() {
            given:
            withParallelThreads(2)
    
            buildFile << """
                def foo = file("foo")
    
                aPing.destroyables.register foo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/Service.java

       * {@code A -> B}.
       *
       * @since 9.0 (in 1.0 as {@code com.google.common.base.Service.State})
       */
      enum State {
        /** A service in this state is inactive. It does minimal work and consumes minimal resources. */
        NEW,
    
        /** A service in this state is transitioning to {@link #RUNNING}. */
        STARTING,
    
        /** A service in this state is operational. */
        RUNNING,
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    2. Explicitly declare the association between the task and the service via the link:{javadocPath}/org/gradle/api/Task.html#usesService-org.gradle.api.provider.Provider-[Task.usesService].
    
    Here is an example of a task that consumes the previous service via a property annotated with `@Internal`:
    
    ====
    [source.multi-language-sample,java]
    .Download.java
    ----
    include::{snippetsPath}/plugins/buildService/groovy/buildSrc/src/main/java/Download.java[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    [cols="a,a", options="header"]
    |===
    | Name
    | Meaning
    
    | `testReportAggregation`
    | The configuration used to declare all project dependencies having test result data to be aggregated.
    | `aggregateTestReportResults`
    | Consumes the project dependencies from the `testReportAggregation` configuration using <<variant_model#sec:variant-aware-matching,variant-aware matching>> to find the appropriate test suite type.
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

    //   // In the first phase we try to merge islands with their nearest consumer
    //   // iff the consumer is another island.
    //   // Note: A consumer is an operation that consumes one of our outputs.
    //   changed |= tryMergedIslandsIntoNearestConsumer();
    //
    //   // In the second phase we try to merge islands with their nearest producer
    //   // of a value they consume, iff the producer is another island.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/LocalTaskNode.java

        public void visitPreExecutionNodes(Consumer<? super Node> visitor) {
            if (!hasVisitedMutationsNode) {
                visitor.accept(resolveMutationsNode);
                hasVisitedMutationsNode = true;
            }
        }
    
        public Node getPrepareNode() {
            return resolveMutationsNode;
        }
    
        @Override
        public void markFailedDueToDependencies(Consumer<Node> completionAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. architecture/networking/controllers.md

        ikrt["Istio krt.Collection"]
        ikrt--"Builds on"-->ikc--"Builds on"-->ic--"Builds on"-->kcg
    ```
    
    **`kube.Client`** is a fairly light wrapper around Kubernetes clients, but offers quite a few benefits.
    Istio consumes _many_ different types of clients (at the time of writing, 7), as well as informers for each of these.
    Additionally, we often need to convert to various different client forms for different libraries we integrate with.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    |===
    | Name
    | Meaning
    
    | `jacocoAggregation`
    | The configuration used to declare all project dependencies having code coverage data to be aggregated.
    | `aggregateCodeCoverageReportResults`
    | Consumes the project dependencies from the `jacocoAggregation` configuration using <<variant_model#sec:variant-aware-matching,variant-aware matching>> to find the appropriate test suite type.
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. tensorflow/c/eager/gradients.cc

      ~TapeVSpace() override {}
    
      // Returns the number of elements in the gradient tensor.
      int64_t NumElements(AbstractTensorHandle* tensor) const override;
    
      // Consumes references to the tensors in the gradient_tensors list and returns
      // a tensor with the result.
      AbstractTensorHandle* AggregateGradients(
          gtl::ArraySlice<AbstractTensorHandle*> gradient_tensors) const override;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top