Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,819 for transformTo (0.22 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            when:
            run "transform2"
    
            then:
            result.assertTasksExecuted(":transform2")
            result.assertTasksSkipped(":transform2")
    
            when:
            run "transform1"
    
            then:
            result.assertTasksExecuted(":transform1")
            result.assertTasksNotSkipped(":transform1")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            then:
            output.count("> Transform lib1.jar (project :lib) with MakeBlueToGreenThings") == 1
            output.count("> Transform lib2.jar (project :lib) with MakeBlueToGreenThings") == 1
            output.count("> Transform lib1.jar (project :lib) with MakeGreenToYellowThings") == 1
            output.count("> Transform lib2.jar (project :lib) with MakeGreenToYellowThings") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/SnapshotTransformInputsBuildOperationType.java

            byte[] getHashBytes();
    
            /**
             * The hash of the classloader that loaded the transform action implementation.
             * <p>
             * Null if the classloader is not managed by Gradle.
             */
            @Nullable
            byte[] getClassLoaderHashBytes();
    
            /**
             * The class name of the transform's action.
             */
            @Nullable
            String getImplementationClassName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccCompilerArgsTransformerTest.groovy

            spec.optimized >> optimize
    
            expect:
            def args = transformer.transform(spec)
            args.containsAll(expected)
    
            where:
            debug | optimize | expected
            true  | false    | ["-g"]
            false | true     | ["-O3"]
            true  | true     | ["-g", "-O3"]
        }
    
        def "transforms system header and include args correctly"() {
            def spec = Stub(NativeCompileSpec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/ProblemTransformer.java

         *
         * @param problem the problem to transform
         * @param id the operation id associated with the problem
         * @return the transformed problem
         */
        Problem transform(Problem problem, OperationIdentifier id);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformParallelIntegrationTest.groovy

            when:
            fails ":resolve"
    
            then:
            failure.assertHasCause("Failed to transform bad-b.jar to match attributes {artifactType=size}")
            failure.assertHasCause("Failed to transform bad-c.jar to match attributes {artifactType=size}")
        }
    
        def "only one transformer execution per workspace"() {
    
            createDirs("lib", "app1", "app2")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/MultiReleaseClasspathElementTransformForLegacy.java

    package org.gradle.internal.classpath.transforms;
    
    import org.gradle.internal.classpath.ClasspathBuilder;
    import org.gradle.internal.classpath.ClasspathEntryVisitor;
    import org.gradle.internal.classpath.ClasspathWalker;
    import org.gradle.internal.classpath.types.InstrumentationTypeRegistry;
    
    import java.io.File;
    import java.io.IOException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    When a user runs a Gradle build Gradle it uses transformed plugin jars. 
    The whole transformation process normally happens on the first use of a build or when a plugin jar is added to the build script classpath.
    We transform the jar and cache transformed jars for future use.
    
    We transform plugins classpath, TestKit classpath and buildscript classes separately. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/IdentifyTransformExecutionProgressDetails.java

        /**
         * The from attributes of the registered transform.
         */
        Map<String, String> getFromAttributes();
    
        /**
         * The to attributes of the registered transform.
         */
        Map<String, String> getToAttributes();
    
        /**
         * The file name of the input artifact that is about to be transformed.
         */
        String getArtifactName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 15 07:29:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

            this.typeRegistry = typeRegistry;
            this.transform = transform;
        }
    
        @Override
        public final void transform(File destination) {
            resultBuilder().accept(destination, builder -> {
                try {
                    visitEntries(builder);
                } catch (FileException e) {
                    // Badly formed archive, so discard the contents and produce an empty JAR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top