Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,416 for TRANSFORM (0.31 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.transform.TransformOutputs.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    There is an artifact transform registered, which can transform `minified` from `false` to `true`.
    When `minified=true` is requested for a dependency, and there are only variants with `minified=false`, then Gradle selects the registered minify transform.
    The minify transform is able to transform the artifact of the dependency with `minified=false` to the artifact with `minified=true`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalElement.java

        protected abstract List<Transform> getIncrementalChanges();
    
        /**
         * Transforms the app element into the alternate app element in the given project.
         */
        public void applyChangesToProject(TestFile projectDir) {
            for (Transform transform : getIncrementalChanges()) {
                transform.applyChangesToProject(projectDir);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. src/mdo/transformer.vm

            }
            return newMap;
        }
    
        protected XmlNode transform(XmlNode node) {
            if (node != null) {
                String oldValue = node.getValue();
                String newValue = transform(oldValue);
                Map<String, String> oldAttrs = node.getAttributes();
                Map<String, String> newAttrs = transform(oldAttrs, this::transform);
                List<XmlNode> oldChildren = node.getChildren();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformValuesInjectionIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.transform
    
    import com.google.common.reflect.TypeToken
    import org.gradle.api.artifacts.transform.InputArtifact
    import org.gradle.api.artifacts.transform.InputArtifactDependencies
    import org.gradle.api.file.FileCollection
    import org.gradle.api.file.FileSystemOperations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 37.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/kotlin/build.gradle.kts

                // Make sure the transform executes each time
                timestamp = System.nanoTime()
    // tag::artifact-transform-registration[]
            }
    // tag::artifact-transform-attribute-setup[]
        }
    }
    // end::artifact-transform-attribute-setup[]
    // end::artifact-transform-registration[]
    
    repositories {
        mavenCentral()
    }
    // tag::artifact-transform-attribute-setup[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/TransformOutputs.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.artifacts.transform;
    
    import org.gradle.internal.HasInternalProtocol;
    
    import java.io.File;
    
    /**
     * The outputs of the artifact transform.
     *
     * <p>
     *     The registered output {@link File}s will appear in the transformed variant in the order they were registered.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 05 15:49:03 UTC 2019
    - 5.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/package-info.java

     *
     * <p>
     *     To register an artifact transform, use {@link org.gradle.api.artifacts.dsl.DependencyHandler#registerTransform(java.lang.Class, org.gradle.api.Action)}.
     *     This allows you to register a {@link org.gradle.api.artifacts.transform.TransformAction} using {@link org.gradle.api.artifacts.transform.TransformSpec}.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 06:14:56 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/PlannedTransformStepIdentity.java

        /**
         * Full set of attributes of the artifact before the transform.
         */
        Map<String, String> getSourceAttributes();
    
        /**
         * Target attributes of the transformed artifact.
         * <p>
         * The attributes include all source attributes of the artifact before the transform,
         * values for some of which have been changed by the transform.
         */
        Map<String, String> getTargetAttributes();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top