Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for transformAction (0.18 sec)

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

       *     the returned future.
       * @param executor Executor to run the function in.
       * @return A future that holds result of the transformation.
       * @since 9.0 (in 2.0 as {@code compose})
       */
      public static <I extends @Nullable Object, O extends @Nullable Object>
          ListenableFuture<O> transform(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        rewriter.replaceAllUsesWith(output_uniform_dequantize_call_op.getResult(0),
                                    new_output_dequant_op.getResult());
    
        // Erase unused ops after the transformation.
        rewriter.eraseOp(output_uniform_dequantize_call_pattern->GetCallOp());
        rewriter.eraseOp(output_uniform_quantize_call_pattern->GetCallOp());
        rewriter.eraseOp(multiply_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ```mlir
      %2 = "tf.TPUExecuteAndUpdateVariables"(%arg0, %arg1, %compile)
        { device_var_reads_indices = [0, 1],
          device_var_updates_indices = [0, -1] }
    ````
    
    The transformation happens only for on-device variables. The above
    transformation requires `%arg0`, `%arg1` to have the same device assignment
    as the `TPUExecute` op.
    ### `-tf-tpu-parallel-execute-sink-resource-write`
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

        }
    
        def "replace transformation runs eagerly"() {
            given:
            Transformer<FileCollection, FileCollection> transform = Mock()
            collection.from(containing(new File("a.txt")))
    
            when:
            collection.replace(transform)
    
            then:
            1 * transform.transform(_)
        }
    
        def "replace transformation result is evaluated lazily"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                return interimResult;
            }
    
            private List<ProjectBuildingResult> build(
                    Map<File, MavenProject> projectIndex, List<InterimResult> interimResults) {
                // The transformation may need to access dependencies raw models,
                // which may cause some re-entrance in the build() method and can
                // actually cause deadlocks.  In order to workaround the problem,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            property.set(Providers.notDefined())
    
            expect:
            property.convention(provider)
            !property.present
            property.getOrNull() == null
        }
    
        def "can map value using a transformation"() {
            def transformer = Mock(Transformer)
            def property = propertyWithNoValue()
    
            when:
            def provider = property.map(transformer)
    
            then:
            0 * _
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            when:
            property.replace { null }
    
            then:
            property.get() == someOtherValue()
        }
    
        def "replace transformation runs eagerly"() {
            given:
            Transformer<Provider<String>, Provider<String>> transform = Mock()
            property.set(someValue())
    
            when:
            property.replace(transform)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        if (failed(applyPatternsAndFoldGreedily(module, std::move(patterns)))) {
          signalPassFailure();
        }
      }
    
      // Constant quantization is a lossy transformation, so they are applied only
      // after all the other patterns have been applied.
      RewritePatternSet patterns_2(ctx);
      populateWithGenerated(patterns_2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Multimaps.java

      }
    
      /**
       * Returns a view of a multimap whose values are derived from the original multimap's entries. In
       * contrast to {@link #transformValues}, this method's entry-transformation logic may depend on
       * the key as well as the value.
       *
       * <p>All other properties of the transformed multimap, such as iteration order, are left intact.
       * For example, the code:
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Multimaps.java

      }
    
      /**
       * Returns a view of a multimap whose values are derived from the original multimap's entries. In
       * contrast to {@link #transformValues}, this method's entry-transformation logic may depend on
       * the key as well as the value.
       *
       * <p>All other properties of the transformed multimap, such as iteration order, are left intact.
       * For example, the code:
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top