Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,136 for transform2 (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    == Artifact transform selection and execution
    
    As described above, when Gradle resolves a configuration and a dependency in the configuration does not have a variant with the requested attributes, Gradle tries to find a chain of artifact transforms to create the variant.
    The process of finding a matching chain of artifact transforms is called _artifact transform selection_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

         * Returns grouped output for the given transformer type and transform subject.
         */
        public GroupedTransformOutputFixture transform(String transformer, String subject) {
            List<GroupedTransformOutputFixture> foundTransforms = transforms.values().stream()
                .filter(transform -> transform.getTransformer().equals(transformer) && transform.getSubject().equals(subject))
                .collect(Collectors.toList());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/main/resources/crawler/transformer.xml

    		</postConstruct>
    	</component>
    
    	<component name="fessFileTransformer" class="org.codelibs.fess.crawler.transformer.FessFileTransformer" instance="singleton">
    		<property name="name">"fessFileTransformer"</property>
    	</component>
    
    	<component name="fessStandardTransformer" class="org.codelibs.fess.crawler.transformer.FessStandardTransformer" instance="singleton">
    		<property name="name">"fessStandardTransformer"</property>
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jan 10 03:35:10 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/PropertiesTransformer.java

            return doTransform(original);
        }
    
        /**
         * Transforms a properties object and write them out to a stream.
         * This will modify the original properties.
         * @param original the properties to transform
         * @param destination the stream to write the properties to
         */
        public void transform(Properties original, OutputStream destination) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/PlannedTransformStepIdentity.java

         * values for some of which have been changed by the transform.
         */
        Map<String, String> getTargetAttributes();
    
        /**
         * Capabilities of the variant of the transformed artifact.
         * <p>
         * Artifact transforms can only change attributes, so the capabilities remain unchanged throughout the transform chain.
         */
        List<? extends Capability> getCapabilities();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/Transformer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.groovy.scripts;
    
    import org.codehaus.groovy.control.CompilationUnit;
    
    public interface Transformer {
    
        void register(CompilationUnit compilationUnit);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 791 bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformParallelIntegrationTest.groovy

            when:
            fails ":resolve"
    
            then:
            failure.assertHasCause("Failed to transform bad-b.jar to match attributes {artifactType=size}")
            failure.assertHasCause("Failed to transform bad-c.jar to match attributes {artifactType=size}")
        }
    
        def "only one transformer execution per workspace"() {
    
            createDirs("lib", "app1", "app2")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentingClasspathFileTransformer.java

                configHashFor(classpathElementTransformFactory, transform, gradleCoreInstrumentationTypeRegistry),
                classpathFileHasher);
            this.classpathElementTransformFactory = classpathElementTransformFactory;
            this.transform = transform;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:36:38 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top