Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for transforming (0.25 sec)

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

            then:
            result1.output.count("Transforming") + result2.output.count("Transforming") == 2
            result1.output.count("Transforming thing.jar to Red") + result2.output.count("Transforming thing.jar to Red") == 1
            result1.output.count("Transforming thing.jar to Blue") + result2.output.count("Transforming thing.jar to Blue") == 1
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/TransformLoggingIntegrationTest.groovy

                .assertOutputContains("Creating multiplier")
                .assertOutputContains("Transforming lib1.jar to lib1.jar.green")
    
            result.groupedOutput.transform("GreenMultiplier", "lib2.jar (project :lib)")
                .assertOutputContains("Creating multiplier")
                .assertOutputContains("Transforming lib2.jar to lib2.jar.green")
    
            where:
            type << TESTED_CONSOLE_TYPES
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformOfDirectoriesIntegrationTest.groovy

            run("resolve")
    
            then:
            result.assertTaskExecuted(":producer")
            output.count("transforming [dir1]") == 1
            outputContains("result = [dir1.size]")
    
            when:
            run("resolve")
    
            then:
            result.assertTaskExecuted(":producer")
            output.count("transforming") == 0
            outputContains("result = [dir1.size]")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/CrashingBuildsArtifactTransformIntegrationTest.groovy

            def build1 = executer.withTasks("redThings").withArgument("-Dcrash=true").start()
            build1.waitForFailure()
    
            run("redThings")
    
            then:
            output.count("Transforming") == 1
            output.count("Transforming thing.jar to Red") == 1
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIncrementalIntegrationTest.groovy

            """
            succeeds ":a:resolve"
            outputContains("Transforming")
        }
    
        void executesIncrementally(String fileChanges) {
            setupBuildFile()
            buildFile << """
                ext.incremental = true
                $fileChanges
            """
            succeeds ":a:resolve"
            outputContains("Transforming")
        }
    
        void previousExecution() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 10:57:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildArtifactTransformIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        File outputFile = outputs.file(input.name + ".xform")
                        def outputDirectory = outputFile.parentFile
                        println("Transforming \$input in output directory \$outputDirectory")
                        java.nio.file.Files.copy(input.toPath(), outputFile.toPath())
                    }
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/overview.md

    called “lowerings”)
    
    MLIR is highly influenced by [LLVM](https://llvm.org/) and unabashedly reuses
    many great ideas from it. It has a flexible type system, and allows
    representing, analyzing and transforming graphs combining multiple levels of
    abstraction in the same compilation unit. These abstractions include TensorFlow
    operations, nested polyhedral loop regions, and even LLVM instructions and fixed
    hardware operations and types.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 21 01:37:38 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/MultiReleaseClasspathElementTransformForLegacy.java

        }
    
        @Override
        protected void processResource(ClasspathBuilder.EntryBuilder builder, ClasspathEntryVisitor.Entry resourceEntry) throws IOException {
            // The entries should only be filtered out if we're transforming the proper multi-release JAR.
            // Otherwise, even if the entry path looks like it is inside the versioned directory, it may still be accessed as a
            // resource.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/CompileOperation.java

     * <p>
     * The compilation may extract data from the source under compilation, made available after compilation by {@link #getExtractedData()}.
     * The exposed transformer typically gathers the data while transforming.
     * <p>
     * As these objects are stateful, they can only be used for a single compile operation.
     *
     * @param <T> the type of data extracted by this operation
     */
    public interface CompileOperation<T> {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 01 11:44:55 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    // This header file defines common utils used when transforming TF ops to
    // Uniform Quantized ops.
    
    #ifndef TENSORFLOW_COMPILER_MLIR_QUANTIZATION_TENSORFLOW_UTILS_TF_TO_UNIFORM_ATTRIBUTE_UTILS_H_
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top