Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for transformTo (0.27 sec)

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

            result.assertTasksNotSkipped(":a:resolve")
            transformed()
            outputContains("result = [b-blue.jar.green, c.jar.green]")
    
            when:
            succeeds(":a:resolve")
    
            then: // have already seen these artifacts before, but the transform outputs have been overwritten
            result.assertTasksNotSkipped(":b:producer", ":a:resolve")
            transformed("b.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

        final EntryTransformer<? super K, ? super V1, V2> transformer;
    
        TransformedEntriesMultimap(
            Multimap<K, V1> fromMultimap,
            final EntryTransformer<? super K, ? super V1, V2> transformer) {
          this.fromMultimap = checkNotNull(fromMultimap);
          this.transformer = checkNotNull(transformer);
        }
    
        Collection<V2> transform(@ParametricNullness K key, Collection<V1> values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Multimaps.java

        final EntryTransformer<? super K, ? super V1, V2> transformer;
    
        TransformedEntriesMultimap(
            Multimap<K, V1> fromMultimap,
            final EntryTransformer<? super K, ? super V1, V2> transformer) {
          this.fromMultimap = checkNotNull(fromMultimap);
          this.transformer = checkNotNull(transformer);
        }
    
        Collection<V2> transform(@ParametricNullness K key, Collection<V1> values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                    // queuing the transforms for execution
                    // The problem can potentially also be triggered by including many direct dependencies so that the queued transforms start to execute before the main thread sees the second transform
                    componentFilter { it instanceof ModuleComponentIdentifier && it.module != 'test' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/MapsTest.java

        // objectKeyed = transformEntries(map6, transformer);
        // objectKeyed = transformEntries(map8, transformer);
        // objectKeyed = transformEntries(map9, transformer);
        // numberKeyed = transformEntries(map8, transformer);
        // numberKeyed = transformEntries(map9, transformer);
    
        // Can't loosen the value type:
        // Map<Number, Number> looseValued1 = transformEntries(map5, transformer);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                // 1. serialize a task that uses the transformed artifact
                // 2. serialize a task whose serialization triggers execution of that transform
                // 3. serialize another task that uses the transformed artifact
                // In addition, the 1st and 3rd tasks need to resolve different variants that share the same transform
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/BUILD

            "transforms/legalize_hashtables.cc",
            "transforms/legalize_jax_random.cc",
            "transforms/legalize_tensorlist.cc",
            "transforms/legalize_tf.cc",
            "transforms/legalize_tf_while.cc",
            "transforms/legalize_variables.cc",
            "transforms/lower_static_tensor_list.cc",
            "transforms/optimize_functional_ops.cc",
            "transforms/partitioned_topological_sort.cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      }
    ```
    ### `-tf-tpu-space-to-depth-pass`
    
    _Applies automatic space to depth transform for the first or frontier convolutions consume host inputs on TPU._
    
    Automatic space to depth transform is done by adding space to depth transform op after host input
    and applying space to depth transform for the first convolution and its backprop filter on TPU.
    
    For example, original program:
    
    ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            try {
                Model model = readFileModel(request, problems);
    
                try {
                    if (transformer != null && context != null) {
                        transformer.transform(pomFile, context, model);
                    }
                } catch (TransformerException e) {
                    problems.add(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            r2 == someValue()
            1 * transformer.transform(someValue()) >> someValue()
            0 * _
        }
    
        def "transformation is provided with the current value of the property each time the value is queried"() {
            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)
Back to top