Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for produceDirs (0.37 sec)

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

     * 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>
     *
     * <p>The main purpose of {@link #addListener addListener} is to support this chaining. You will
     * rarely use it directly, in part because it does not provide direct access to the {@code Future}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. 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)
  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. src/html/template/url.go

    		// "For consistency, percent-encoded octets in the ranges of
    		// ALPHA (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen (%2D),
    		// period (%2E), underscore (%5F), or tilde (%7E) should not be
    		// created by URI producers
    		case '-', '.', '_', '~':
    			continue
    		case '%':
    			// When normalizing do not re-encode valid escapes.
    			if norm && i+2 < len(s) && isHex(s[i+1]) && isHex(s[i+2]) {
    				continue
    			}
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top