Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 752 for transformed (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    			expectedVerb: "LIST",
    		},
    		{
    			desc:        "LIST should be transformed to WATCH if we have the right query param on the request",
    			initialVerb: "LIST",
    			request: &http.Request{
    				Method: "GET",
    				URL: &url.URL{
    					RawQuery: "watch=true",
    				},
    			},
    			expectedVerb: "WATCH",
    		},
    		{
    			desc:        "LIST isn't transformed to WATCH if we have query params that do not include watch",
    			initialVerb: "LIST",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/internal/coerce/StringToEnumTransformer.java

            }
            Object[] transformed = new Object[args.length];
            for (int i = 0; i < args.length; i++) {
                Object arg = args[i];
                Class<?> type = types[i].getTheClass();
                if (type.isEnum() && arg instanceof CharSequence) {
                    transformed[i] = toEnumValue(Cast.uncheckedNonnullCast(type), arg);
                } else {
                    transformed[i] = args[i];
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/guarantee-all-funcs-one-use.mlir

    // expected-error @+1 {{recursive call graph cannot be transformed}}
    module {
      func.func private @f() {
        func.call @f() : () -> ()
        func.call @f() : () -> ()
        func.return
      }
    }
    
    // -----
    // Handle error case of infinite recursion with mutually recursive ops.
    // expected-error @+1 {{recursive call graph cannot be transformed}}
    module {
      func.func private @f() {
        func.call @g() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top