Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for produceDirs (0.29 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

             * ${project.name}FileName - changes the name of the file to write to in the directory
             * ${project.name}Content - changes the text to write to the output file.
             */
            void produceDirs() {
                producerTaskClassName = "DirProducer"
                producerConfig = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                );
            }
        }
    
        private void collectValidationProblemsForConsumer(LocalTaskNode consumer, TypeValidationContext validationContext, String locationConsumedByThisTask, Collection<Node> producers) {
            producers.stream()
                .filter(producerNode -> hasNoSpecifiedOrder(producerNode, consumer))
                .filter(MissingTaskDependencyDetector::isEnabled)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributesSchemaTest.groovy

            schema.withProducer(producer).selectionSchema.hasAttribute(attr2)
            schema.withProducer(producer).selectionSchema.hasAttribute(attr3)
        }
    
        def "uses the producers compatibility rules when the consumer does not express an opinion"() {
            def producer = new DefaultAttributesSchema(TestUtil.instantiatorFactory(), SnapshotTestUtil.isolatableFactory())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_coarsening/executor_tpuv1_island_coarsening.mlir

        tf_executor.fetch
      }
      func.return
    }
    
    // Check that we bring in TPUReplicatedInputOp operand producers.
    // CHECK-LABEL: func @fuse_in_replicated_input_op
    func.func @fuse_in_replicated_input_op(%arg0: tensor<i32>) {
      tf_executor.graph {
    // CHECK: tf_executor.island
    // CHECK-NEXT: = "tf.TPUReplicatedInput"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 02 03:15:59 UTC 2022
    - 36.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

                result.assertTaskOrder(cleanBar.fullPath, generateBar.fullPath, generate.fullPath)
            }
        }
    
        def "multiple destroyer tasks listed on the command line followed by producers can run concurrently and are executed in the correct order"() {
            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
            def cleanFoo = foo.task('cleanFoo').destroys('build/foo').shouldBlock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

     * use a framework. Frameworks automate the process, often adding features like monitoring,
     * debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <h4>{@link java.util.concurrent.CompletableFuture} / {@link java.util.concurrent.CompletionStage}
     * </h4>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/FluentFuture.java

     * use a framework. Frameworks automate the process, often adding features like monitoring,
     * debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <h4>{@link java.util.concurrent.CompletableFuture} / {@link java.util.concurrent.CompletionStage}
     * </h4>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

         *
         *     println(copy.get())  // prints qux
         * </pre>
         * <p>
         * The copy doesn't share the producer of this property, but inherits producers of the current property value.
         *
         * @return the shallow copy of this property
         */
        public ProviderInternal<T> shallowCopy() {
            return new ShallowCopyProvider();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/shape_inference.cc

                                         back_edge.RemovedEdges(), &shape_refiner));
      TF_RETURN_IF_ERROR(back_edge.Replace());
    
      // Currently information does not flow "backward" from consumers to producers
      // in the shape inference, but we consume the shapes in a second pass in case
      // backward information flow is added in the future.
      return StoreOutputShapes(*graph, shape_refiner, shape_info);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

    //
    // IMPLEMENTATION
    // --------------
    //
    // We traverse the graph minus backedges in reverse post order, mapping each
    // node to the set of resource operation reaching that node.  Since we visit
    // producers before consumers, we can construct the set of reaching operations
    // by taking the union of the operations reaching the input nodes.  These
    // "reaching resource operations" can then be used to create the pairs of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top