Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for produceDirs (0.18 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIncrementalIntegrationTest.groovy

                    removed = []
                    incremental = true
                    registerNewOutput = false
                }
            """
            setupBuildWithColorTransform {
                produceDirs()
                params("""
                    addedFiles.set(provider { added })
                    modifiedFiles.set(provider { modified })
                    removedFiles.set(provider { removed })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 10:57:29 UTC 2024
    - 9.5K 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/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/JvmEcosystemAttributesDetails.java

        /**
         * Provides or requires a complete component (jar) and not just the classes or
         * resources
         */
        JvmEcosystemAttributesDetails asJar();
    
        /**
         * Configures the target JVM version. For producers of a library, it's in general
         * a better idea to rely on inference which will calculate the target JVM version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/jit/partially_decluster_pass.cc

      // on if we've decided that some of its consumers have to be declustered too.
      // Iterating the graph in post-order guarantees that consumers have been
      // visited before producers.
      std::vector<Node*> post_order;
      GetPostOrder(*graph, &post_order, /*stable_comparator=*/NodeComparatorName(),
                   /*edge_filter=*/NotBackedge);
    
      absl::flat_hash_set<Node*> nodes_to_partially_decluster;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

            }
    
            where:
            type << ProductionType.values()
        }
    
        // Because we prevent destroyers from running in between producers and consumers, this does not currently work the way a user would
        // expect.  The intermediate destroyer task will be delayed until the consumers have all run.  If we were looking at the specific
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/wasm/asm.go

    }
    
    // writeProducerSec writes an optional section that reports the source language and compiler version.
    func writeProducerSec(ctxt *ld.Link) {
    	sizeOffset := writeSecHeader(ctxt, sectionCustom)
    	writeName(ctxt.Out, "producers")
    
    	writeUleb128(ctxt.Out, 2) // number of fields
    
    	writeName(ctxt.Out, "language")       // field name
    	writeUleb128(ctxt.Out, 1)             // number of values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

                }
    
            """
    
            when:
            run ':a:checkDebug'
    
            then:
            result.assertTasksExecuted(':b:barJar', ':a:checkDebug')
        }
    
        def "consumer can veto producers view of compatibility"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
            buildFile << """
                $typeDefs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
Back to top