Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 752 for transformed (0.2 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/TransformedClassPathTest.groovy

        }
    
        def "transformed classpath can be appended to another transformed"() {
            given:
            TransformedClassPath transformed1 = transformedClassPath("1.jar": "t1.jar")
            TransformedClassPath transformed2 = transformedClassPath("2.jar": "t2.jar")
    
            when:
            def combined = transformed1 + transformed2
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 11:14:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Transformer.java

     */
    package org.gradle.api;
    
    /**
     * <p>A {@code Transformer} transforms objects of type.</p>
     *
     * <p>Implementations are free to return new objects or mutate the incoming value.</p>
     *
     * @param <OUT> The type the value is transformed to.
     * @param <IN> The type of the value to be transformed.
     */
    public interface Transformer<OUT extends @org.jetbrains.annotations.Nullable Object, IN> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/transform/transform.go

    type Transformer interface {
    	// Transform writes to dst the transformed bytes read from src, and
    	// returns the number of dst bytes written and src bytes read. The
    	// atEOF argument tells whether src represents the last bytes of the
    	// input.
    	//
    	// Callers should always process the nDst bytes produced and account
    	// for the nSrc bytes consumed before considering the error err.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/ChainingTransformerTest.groovy

            Transformer<String, String> transformerA = Mock()
            Transformer<String, String> transformerB = Mock()
    
            transformerA.transform('original') >> 'a'
            transformerB.transform('a') >> 'b'
    
            transformer.add(transformerA)
            transformer.add(transformerB)
    
            expect:
            transformer.transform('original') == 'b'
    
        }
    
        def 'can use a Closure as a Transformer'() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 27 15:36:08 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/mutator/ClearArtifactTransformCacheWithoutInstrumentedJarsMutatorTest.groovy

            createFile(new File(cachesDir, "8.7-rc-4/transforms/first/transformed/instrumented/file"))
            createFile(new File(cachesDir, "8.7-rc-4/transforms/second/transformed/original/file"))
            createFile(new File(cachesDir, "8.8/transforms/first/transformed/instrumented/file"))
            createFile(new File(cachesDir, "8.8/transforms/first/transformed/original/file"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 12:30:06 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/InternalTransformer.java

    package org.gradle.internal;
    
    /**
     * Equivalent to {@code Transformer}, but does not declare nullability due to Java 6 restrictions.
     *
     * <p>A {@code Transformer} transforms objects of type.</p>
     *
     * <p>Implementations are free to return new objects or mutate the incoming value.</p>
     *
     * @param <OUT> The type the value is transformed to.
     * @param <IN> The type of the value to be transformed.
     */
    public interface InternalTransformer<OUT, IN> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexerTest.groovy

            expect:
            parse(source) == transformed
    
            where:
            source              | transformed
            "text<p>para 2</p>" | "<p>text</p><p>para 2</p>"
            "text<h2>text</h2>" | "<p>text</p><h2>text</h2>"
        }
    
        def "does not add implicit <p> element for elements with inline content"() {
            expect:
            parse(source) == transformed
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/transform/transform.go

    type Transformer interface {
    	// Transform writes to dst the transformed bytes read from src, and
    	// returns the number of dst bytes written and src bytes read. The
    	// atEOF argument tells whether src represents the last bytes of the
    	// input.
    	//
    	// Callers should always process the nDst bytes produced and account
    	// for the nSrc bytes consumed before considering the error err.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            output.count("Transformed") == 8
            isTransformed("lib1.jar", "lib1.jar.size")
            isTransformed("lib2.jar", "lib2.jar.size")
            isTransformed("lib3.jar", "lib3.jar.size")
            isTransformed("lib4-1.0.jar", "lib4-1.0.jar.size")
            isTransformed("lib1.jar", "lib1.jar.hash")
            isTransformed("lib2.jar", "lib2.jar.hash")
            isTransformed("lib3.jar", "lib3.jar.hash")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/ArtifactTransformation.java

        String ROLE = ArtifactTransformation.class.getName();
    
        /**
         * Take in an artifact and return the transformed artifact for locating in the remote repository. If no
         * transformation has occurred the original artifact is returned.
         *
         * @param artifact           Artifact to be transformed.
         * @param request the repositories to check
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top