Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,416 for TRANSFORM (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                it.assertHasCause("Failed to transform root.blue to match attributes {artifactType=blue, color=green}.")
                it.assertHasCause("Failed to transform a.jar (project :a) to match attributes {artifactType=jar, color=green}.")
                it.assertHasCause("Failed to transform a.blue to match attributes {artifactType=blue, color=green}.")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIncrementalIntegrationTest.groovy

                import java.io.File
                import javax.inject.Inject;
                import groovy.transform.CompileStatic
                import org.gradle.api.provider.*
                import org.gradle.api.file.*
                import org.gradle.api.tasks.*
                import org.gradle.api.artifacts.transform.*
                import org.gradle.work.*
    
                abstract class MakeGreen implements TransformAction<Parameters> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 10:57:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformFactory.java

        /**
         * Returns the transformation to be applied to the given jar/directory.
         *
         * @param file the jar/directory to transform
         * @param classTransform the transform that will be applied to every class
         * @param typeRegistry the registry of type hierarchies
         * @return the transformation that will transform the file upon request.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/PropertiesTransformerTest.groovy

            when:
            def result = transformer.transform(original)
            then:
            result == test
        }
    
        def 'action can access properties'() {
            given:
            Action<Properties> action = Mock()
            transformer.addAction(action)
            Properties original = props(removed:'value', changed:'old')
            when:
            def result = transformer.transform(original)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftElement.java

                }
            };
        }
    
        /**
         * Returns a transform that rename the before element to {@code renamed-} followed by the original name.
         */
        protected static Transform rename(SourceFileElement beforeElement) {
            return rename(beforeElement, AbstractRenameTransform.DEFAULT_RENAME_PREFIX);
        }
    
        protected static Transform rename(SourceFileElement beforeElement, String renamePrefix) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/context.go

    	pSrc int // pSrc points to the start of the currently scanned rune.
    
    	// checkpoints safe to return in Transform, where nDst <= pDst and nSrc <= pSrc.
    	nDst, nSrc int
    	err        error
    
    	sz   int  // size of current rune
    	info info // case information of currently scanned rune
    
    	// State preserved across calls to Transform.
    	isMidWord bool // false if next cased letter needs to be title-cased.
    }
    
    func (c *context) Reset() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/TransformedProjectArtifactSetCodec.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.serialize.codecs.dm.transform
    
    import org.gradle.api.internal.artifacts.transform.ComponentVariantIdentifier
    import org.gradle.api.internal.artifacts.transform.TransformStepNode
    import org.gradle.api.internal.artifacts.transform.TransformedProjectArtifactSet
    import org.gradle.internal.extensions.stdlib.uncheckedCast
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformRegistrationFactory.java

     */
    
    package org.gradle.api.internal.artifacts.transform;
    
    import org.gradle.api.artifacts.transform.CacheableTransform;
    import org.gradle.api.artifacts.transform.InputArtifact;
    import org.gradle.api.artifacts.transform.InputArtifactDependencies;
    import org.gradle.api.artifacts.transform.TransformAction;
    import org.gradle.api.artifacts.transform.TransformParameters;
    import org.gradle.api.internal.DomainObjectContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-shared/src/integTest/groovy/org/gradle/integtests/PathTraversalCheckerIntegrationTest.groovy

                }
    
                abstract class TestUnzipTransform extends ${UnzipTransform.class.name} {
                    @Override
                    public void transform(TransformOutputs outputs) {
                        println "Executing unzip transform..."
                        super.transform(outputs)
                    }
                }
    
                dependencies {
                    registerTransform(TestUnzipTransform) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/FilesInTransformIntegrationTest.groovy

            where:
            task << ["resolveCollection", "resolveProviders"]
        }
    
        def "reading a file in transform action with #task of buildSrc build does not create a build input"() {
            given:
            createDir("buildSrc") {
                getTransformFixture().tap {
                    withTransformPlugin(dir("transform-plugin"))
                    withJavaLibrarySubproject(dir("subproject"))
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top