Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for transformTo (0.25 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

    import org.gradle.tooling.events.transform.TransformFinishEvent;
    import org.gradle.tooling.events.transform.TransformOperationDescriptor;
    import org.gradle.tooling.events.transform.TransformOperationResult;
    import org.gradle.tooling.events.transform.TransformProgressEvent;
    import org.gradle.tooling.events.transform.TransformStartEvent;
    import org.gradle.tooling.events.transform.internal.DefaultTransformFailureResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. 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)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

       *
       * @param input The future to transform
       * @param function A function to transform the result of the input future to the result of the
       *     output future
       * @param executor Executor to run the function in.
       * @return A future that holds result of the function (if the input succeeded) or the original
       *     input's failure (if not)
       * @since 19.0 (in 11.0 as {@code transform})
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    eachFile { fcd -> fcd.relativePath = fcd.relativePath.prepend('transformed') }
                }
            '''.stripIndent()
    
            when:
            run 'copy'
    
            then:
            file('dest').assertHasDescendants(
                'transformedAgain/transformed/subdir/one/one.a',
                'transformedAgain/transformed/subdir/two/two.a',
                'subdir/one',
                'subdir/two'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    button,
    input {
    	line-height: normal;
    }
    
    /** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */
    button,
    select {
    	text-transform: none;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/Futures.java

       *
       * @param input The future to transform
       * @param function A function to transform the result of the input future to the result of the
       *     output future
       * @param executor Executor to run the function in.
       * @return A future that holds result of the function (if the input succeeded) or the original
       *     input's failure (if not)
       * @since 19.0 (in 11.0 as {@code 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

     */
    
    package org.gradle.api.services
    
    import org.gradle.api.Plugin
    import org.gradle.api.Project
    import org.gradle.api.artifacts.transform.TransformAction
    import org.gradle.api.artifacts.transform.TransformOutputs
    import org.gradle.api.artifacts.transform.TransformParameters
    import org.gradle.api.file.FileSystemOperations
    import org.gradle.api.file.ProjectLayout
    import org.gradle.api.internal.AbstractTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    #include "mlir/Transforms/RegionUtils.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

        private static class ActivationWalker extends MavenTransformer {
    
            private final Deque<ActivationFrame> stk;
    
            ActivationWalker(Deque<ActivationFrame> stk, UnaryOperator<String> transformer) {
                super(transformer);
                this.stk = stk;
            }
    
            private ActivationFrame nextFrame(String property) {
                return new ActivationFrame(property, Optional.empty());
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    #include "stablehlo/dialect/StablehloOps.h"  // from @stablehlo
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h"
    #include "tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top