Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 683 for transformed (0.39 sec)

  1. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/features/withstaticreference/WithExtensionReferences.java

     * that "matches" the original interceptor's signature as if it was an extension (i.e. receiver is
     * transformed to the first argument, and the callable kind becomes static). For Groovy properties,
     * the name of the callable is also transformed from "foo" to "getFoo".
     * It is possible to specify the custom name for the extension implementation, if needed.
     */
    public @interface WithExtensionReferences {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/envelope_test.go

    					t.Fatalf("envelopeTransformer transformed data incorrectly. Expected: %v, got %v", originalText, untransformedData)
    				}
    			}
    		})
    	}
    }
    
    // Makes Envelope transformer hit cache limit, throws error if it misbehaves.
    func TestEnvelopeCacheLimit(t *testing.T) {
    	cbcTransformer := func(block cipher.Block) (value.Transformer, error) {
    		return aestransformer.NewCBCTransformer(block), nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 14:23:50 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/TransformersTest.groovy

            def result = toTransformer(factory).transform("original")
    
            then:
            1 * factory.create() >> "transformed"
            result == "transformed"
        }
    
        def constants() {
            def foo = "foo"
            expect:
            constant(foo).transform(null).is(foo)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/base-services-groovy/src/test/groovy/org/gradle/api/internal/coerce/StringToEnumTransformerTest.groovy

        def transformer = new StringToEnumTransformer()
    
        static enum TestEnum {
            ABC, DEF
        }
    
        def "can transform enums correctly - #desc"() {
            def typesArray = types.collect { new CachedClass(it, null) } as CachedClass[]
            def argsArray = args as Object[]
    
            expect:
            transformer.transform(typesArray, argsArray).toList() == transformed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. docs/lambda/README.md

    - `outputRoute` – A routing token that is added to the response headers when the Lambda function returns the transformed object. This is used by MinIO to further verify the incoming response validity.
    
    - `outputToken` – A token added to the response headers when the Lambda function returns the transformed object. This is used by MinIO to verify the incoming response validity.
    
    Lets start the lamdba handler.
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 04 19:15:28 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/InternalTransformers.java

    import java.util.regex.Pattern;
    
    /**
     * Utility transformers.
     */
    public abstract class InternalTransformers {
    
        /**
         * Creates a transformer that simply type casts the input to the given output type.
         *
         * @param outputType The type to cast the input to
         * @param <O> The type of the transformed object
         * @param <I> The type of the object to be transformed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

            this.typeRegistry = typeRegistry;
            this.transform = transform;
        }
    
        @Override
        public final void transform(File destination) {
            resultBuilder().accept(destination, builder -> {
                try {
                    visitEntries(builder);
                } catch (FileException e) {
                    // Badly formed archive, so discard the contents and produce an empty JAR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractRealisedModuleResolveMetadataSerializationHelper.java

            encoder.writeSmallInt(transformed.getConfigurationNames().size());
            for (String configurationName: transformed.getConfigurationNames()) {
                ConfigurationMetadata configuration = transformed.getConfiguration(configurationName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformOfDirectoriesIntegrationTest.groovy

                        to.attribute(artifactType, 'size')
                    }
                }
    
                def transformed = configurations.compile.incoming.artifactView { attributes.attribute(artifactType, 'size') }.files
    
                task resolve(type: ShowFilesTask) {
                    inFiles.from(transformed)
                }
    
                abstract class MakeSize implements TransformAction<None> {
                    @InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildArtifactTransformIntegrationTest.groovy

            output.count("Transforming") == 2
        }
    
        def "cross-build dependency with transform in another build"() {
            given:
            def buildB = multiProjectBuild('buildB', ['app', 'lib'])
            buildB.buildFile << """
                import org.gradle.api.artifacts.transform.TransformParameters
    
                subprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top