Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 533 for Transformed (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/TransformersTest.groovy

            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)
  7. platforms/core-configuration/base-services-groovy/src/test/groovy/org/gradle/api/internal/coerce/StringToEnumTransformerTest.groovy

    class StringToEnumTransformerTest extends Specification {
    
        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)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

         * Base class implementation applies the {@link ClassTransform} to the code.
         *
         * @param builder the builder for the transformed output
         * @param classEntry the entry to process
         * @throws IOException if reading or writing entry fails
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. tensorflow/cc/ops/const_op.cc

      }
      if (!inp.node_name().empty()) {
        return NodeBuilder::NodeOut(inp.node_name(), inp.index(), inp.data_type());
      }
      auto transformed = Input{
          Const(scope.NewSubScope("Const"), Input::Initializer(inp.tensor()))};
      return NodeBuilder::NodeOut{transformed.node(), transformed.index()};
    }
    
    std::vector<NodeBuilder::NodeOut> AsNodeOutList(const Scope& scope,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 20:58:54 UTC 2017
    - 2.7K bytes
    - Viewed (0)
  10. 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)
Back to top