Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,136 for transform2 (0.22 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinderTest.groovy

            transformRegistry.registrations >> [transform1, transform2, transform3, transform4, transform5, transform6]
    
            when:
            def result = transformations.findTransformedVariants(variants, requested)
    
            then:
            result.size() == 2
            // sourceVariant + transform2 + transform3 = compatible
            assertTransformChain(result[0], sourceVariant, compatible, transform2, transform3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderSpec.groovy

            1 * transform1.transform(someValue()) >> someOtherValue()
            1 * transform2.transform(someOtherValue()) >> someOtherValue2()
            1 * transform3.transform(someOtherValue2()) >> someOtherValue3()
            0 * _
        }
    
        def "can chain mapped providers with filtering providers"() {
            def transform1 = Mock(Transformer)
            def spec = Mock(Spec)
            def transform2 = Mock(Transformer)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            when:
            run "transform2"
    
            then:
            result.assertTasksExecuted(":transform2")
            result.assertTasksSkipped(":transform2")
    
            when:
            run "transform1"
    
            then:
            result.assertTasksExecuted(":transform1")
            result.assertTasksNotSkipped(":transform1")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/Transform.java

        /**
         * Whether the transformer requires dependencies of the transformed artifact to be injected.
         */
        boolean requiresDependencies();
    
        /**
         * Whether the transformer requires {@link InputChanges} to be injected.
         */
        boolean requiresInputChanges();
    
        /**
         * Whether the transformer is cacheable.
         */
        boolean isCacheable();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/storage/value/transformer.go

    	for i, transformer := range t.transformers {
    		if bytes.HasPrefix(data, transformer.Prefix) {
    			result, stale, err := transformer.Transformer.TransformFromStorage(ctx, data[len(transformer.Prefix):], dataCtx)
    			// To migrate away from encryption, user can specify an identity transformer higher up
    			// (in the config file) than the encryption transformer. In that scenario, the identity transformer needs to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/norm/transform.go

    // license that can be found in the LICENSE file.
    
    package norm
    
    import (
    	"unicode/utf8"
    
    	"golang.org/x/text/transform"
    )
    
    // Reset implements the Reset method of the transform.Transformer interface.
    func (Form) Reset() {}
    
    // Transform implements the Transform method of the transform.Transformer
    // interface. It may need to write segments of up to MaxSegmentSize at once.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/transform.go

    // license that can be found in the LICENSE file.
    
    package norm
    
    import (
    	"unicode/utf8"
    
    	"golang.org/x/text/transform"
    )
    
    // Reset implements the Reset method of the transform.Transformer interface.
    func (Form) Reset() {}
    
    // Transform implements the Transform method of the transform.Transformer
    // interface. It may need to write segments of up to MaxSegmentSize at once.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top