Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,946 for Transform (0.23 sec)

  1. 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)
  2. build-logic/packaging/src/main/kotlin/gradlebuild/shade/transforms/ShadeClasses.kt

     */
    
    package gradlebuild.shade.transforms
    
    import com.google.gson.Gson
    import gradlebuild.basics.classanalysis.JarAnalyzer
    import gradlebuild.identity.tasks.BuildReceipt
    import org.gradle.api.artifacts.transform.CacheableTransform
    import org.gradle.api.artifacts.transform.InputArtifact
    import org.gradle.api.artifacts.transform.TransformAction
    import org.gradle.api.artifacts.transform.TransformOutputs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

        }
    
        private static String getFileSizer() {
            """
                import org.gradle.api.artifacts.transform.InputArtifact
                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.FileSystemLocation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/IdentifyTransformExecutionProgressDetails.java

        /**
         * The class of the transform action.
         */
        Class<?> getTransformActionClass();
    
        /**
         * The combined input hash of the secondary inputs.
         * <p>
         * The secondary inputs are the implementation of the transform action and
         * the combined input hash of the parameters of the transform action.
         */
        byte[] getSecondaryInputValueHashBytes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 15 07:29:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue50276.go

    package p
    
    // simplified test case
    
    type transform[T any] struct{}
    type pair[S any] struct {}
    
    var _ transform[step]
    
    type box transform[step]
    type step = pair[box]
    
    // test case from issue
    
    type Transform[T any] struct{ hold T }
    type Pair[S, T any] struct {
    	First  S
    	Second T
    }
    
    var first Transform[Step]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 880 bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/transforms/ExplodeZipAndFindJars.groovy

     * limitations under the License.
     */
    
    
    package gradlebuild.binarycompatibility.transforms
    
    import groovy.transform.CompileStatic
    import org.gradle.api.artifacts.transform.InputArtifact
    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.FileSystemLocation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 08 13:44:59 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/file/TaskFilePropertiesIntegrationTest.groovy

            when:
            run("transform")
    
            then:
            result.assertTasksSkipped(":transform")
    
            when:
            file("dir1/file3.txt").text = "new"
            run("transform")
    
            then:
            result.assertTasksNotSkipped(":transform")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/VariantDefinition.java

        /**
         * @return The transform chain which transforms the root variant to this variant.
         */
        TransformChain getTransformChain();
    
        /**
         * The single transform step which transforms the previous variant to this variant.
         */
        TransformStep getTransformStep();
    
        /**
         * @return The previous variant in the transform chain. If null, this variant uses the producer variant as its root.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/groovy/build.gradle

                // 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.6K bytes
    - Viewed (0)
Back to top