Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,136 for transform2 (0.12 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/SnapshotTransformInputsBuildOperationType.java

             * <p>
             * This is using the visitor from {@link SnapshotTaskInputsBuildOperationType} since there is no difference
             * between tasks and transforms in this regard. Later we can unify the transform and the task build operation type.
             */
            void visitInputFileProperties(FilePropertyVisitor visitor);
    
            /**
             * The names of the output properties.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K 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/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)
  4. subprojects/core-api/src/main/java/org/gradle/internal/Transformers.java

            }
        }
    
        /**
         * A getClass() transformer.
         *
         * @param <T> The type of the object
         * @return A getClass() transformer.
         */
        public static <T> Transformer<Class<T>, T> type() {
            return new Transformer<Class<T>, T>() {
                @Override
                public Class<T> transform(T original) {
                    @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 15 23:29:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/FlatMapProvider.java

            T unpackedValue = value.getWithoutSideEffect();
            Provider<? extends S> transformedProvider = transformer.transform(unpackedValue);
            if (transformedProvider == null) {
                return Providers.notDefined();
            }
    
            // Note, that the potential side effect of the transformed provider
            // is going to be executed before this fixed side effect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.6K 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. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

                TransformWorkspaceIdentity transformWorkspaceIdentity,
                Transform transform,
                ComponentIdentifier componentIdentifier
            ) {
                this.inputArtifact = inputArtifact;
                this.transformWorkspaceIdentity = transformWorkspaceIdentity;
                this.transform = transform;
                this.componentIdentifier = componentIdentifier;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top