Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,946 for Transform (0.14 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-incremental/kotlin/build.gradle.kts

    // tag::artifact-transform-countloc[]
    abstract class CountLoc : TransformAction<TransformParameters.None> {
    
        @get:Inject                                                         // <1>
        abstract val inputChanges: InputChanges
    
        @get:PathSensitive(PathSensitivity.RELATIVE)
        @get:InputArtifact
        abstract val input: Provider<FileSystemLocation>
    
        override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/artifact/transform/TransformationManagerTest.java

     * under the License.
     */
    package org.apache.maven.artifact.transform;
    
    import javax.inject.Inject;
    
    import java.util.List;
    
    import org.apache.maven.repository.legacy.resolver.transform.ArtifactTransformation;
    import org.apache.maven.repository.legacy.resolver.transform.ArtifactTransformationManager;
    import org.apache.maven.repository.legacy.resolver.transform.LatestArtifactTransformation;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/internal/coerce/MethodArgumentsTransformer.java

    import org.codehaus.groovy.reflection.CachedClass;
    
    /**
     * Potentially transforms arguments to call a method with.
     */
    public interface MethodArgumentsTransformer {
    
        /**
         * Transforms an argument list to call a method with.
         *
         * May return {@code args} if no transform is necessary.
         */
        Object[] transform(CachedClass[] types, Object[] args);
    
        /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/TransformSpec.java

     * limitations under the License.
     */
    
    package org.gradle.api.artifacts.transform;
    
    import org.gradle.api.Action;
    import org.gradle.api.attributes.AttributeContainer;
    
    /**
     * Base configuration for artifact transform registrations.
     *
     * @see org.gradle.api.artifacts.dsl.DependencyHandler#registerTransform(Class, Action)
     * @param <T> The transform specific parameter type.
     * @since 5.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 05 15:49:03 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/UnzipTransform.java

     */
    
    package org.gradle.api.internal.artifacts.transform;
    
    import com.google.common.io.Files;
    import org.apache.commons.io.IOUtils;
    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 Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/fold.go

    // license that can be found in the LICENSE file.
    
    package cases
    
    import "golang.org/x/text/transform"
    
    type caseFolder struct{ transform.NopResetter }
    
    // caseFolder implements the Transformer interface for doing case folding.
    func (t *caseFolder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	c := context{dst: dst, src: src, atEOF: atEOF}
    	for c.next() {
    		foldFull(&c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 935 bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/FlatMapProviderTest.groovy

                        return "Transformer with $provider"
                    }
                }
                transform.provider = new FlatMapProvider(Providers.of("value"), transform)
                return transform.provider
            }
        }
    
        static class FlatMapProviderCircularChainEvaluationTest extends CircularChainEvaluationSpec<String> implements UsesStringProperty {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/UndeclaredDependencyResolutionIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(because = "Transform nodes are not serialized when transform of project artifact is not declared as a dependency of another node")
        def "task can query FileCollection containing the output of transform of project artifacts without declaring this access"() {
            setupBuildWithProjectArtifactTransforms()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformedVariant.java

     */
    
    package org.gradle.api.internal.artifacts.transform;
    
    import org.gradle.api.attributes.HasAttributes;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.ResolvedVariant;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    
    /**
     * Represents a variant which is produced as the result of applying an artifact transform chain
     * to a root producer variant.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top