Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,156 for Transform (0.12 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/transforms/FindGradleJars.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 Apr 11 12:20:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // Transform.
    func (c Caser) Reset() { c.t.Reset() }
    
    // Transform implements the transform.Transformer interface and transforms the
    // given input to the case form implemented by c.
    func (c Caser) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	return c.t.Transform(dst, src, atEOF)
    }
    
    // Span implements the transform.SpanningTransformer interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/InstrumentationAnalysisTransform.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.initialization.transform;
    
    import com.google.common.collect.Ordering;
    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 Apr 23 13:19:14 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

                if (!transform.requiresInputChanges()) {
                    // Non-incremental project artifact transforms also run in an immutable workspace
                    identityCache = immutableWorkspaceServices.getIdentityCache();
                    execution = new NormalizedIdentityImmutableTransformExecution(
                        transform,
                        inputArtifact,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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/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)
  10. 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)
Back to top