Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,030 for convertOp (0.22 sec)

  1. src/main/java/org/codelibs/core/beans/Converter.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans;
    
    /**
     * 文字列とオブジェクトの変換を行なうインターフェースです。
     *
     * @author higa
     */
    public interface Converter {
    
        /**
         * 値を文字列として返します。
         *
         * @param value
         *            値
         * @return 文字列としての値
         */
        String getAsString(Object value);
    
        /**
         * 値をオブジェクトとして返します。
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/convert.go

    }
    
    func durationConverter(value *durationpb.Duration) convertFunc {
    	return func(*instance) (any, error) {
    		return value.AsDuration().String(), nil
    	}
    }
    
    // openCensusAgentContextConverter returns a converter that returns the list of
    // distributed trace contexts to propagate with envoy.
    func openCensusAgentContextConverter(contexts []meshAPI.Tracing_OpenCensusAgent_TraceContext) convertFunc {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/tflite-converter-issue.md

    ---
    name: TensorFlow Lite Converter Issue
    about: Use this template for reporting issues during model conversion to TFLite
    labels: 'TFLiteConverter'
    
    ---
    
    ### 1. System information
    
    - OS Platform and Distribution (e.g., Linux Ubuntu 16.04):
    - TensorFlow installation (pip package or built from source):
    - TensorFlow library (version, if pip package or github SHA, if built from source):
    
    ### 2. Code
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 15 03:35:58 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. pkg/wasm/convert.go

    				return nil, nil, nil, fmt.Errorf("failed to convert extension config struct %+v to Wasm Network filter", typedStruct)
    			}
    		} else if typedStruct.TypeUrl == model.WasmNetworkFilterType {
    			wasmNetwork = true
    			if err := conversion.StructToMessage(typedStruct.Value, wasmNetworkFilterConfig); err != nil {
    				return nil, nil, nil, fmt.Errorf("failed to convert extension config struct %+v to Wasm HTTP filter", typedStruct)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/convert.go

    		// converted by value, not by pointer.
    		fn = typecheck.LookupRuntime(fnname)
    		var arg ir.Node
    		switch {
    		case fromType == argType:
    			// already in the right type, nothing to do
    			arg = n
    		case fromType.Kind() == argType.Kind(),
    			fromType.IsPtrShaped() && argType.IsPtrShaped():
    			// can directly convert (e.g. named type to underlying type, or one pointer to another)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/ir/QuantizeUtils.cc

                                   outConvertedType);
      }
      if (auto uniformQuantizedPerAxis =
              mlir::dyn_cast<quant::UniformQuantizedPerAxisType>(
                  quantizedElementType)) {
        UniformQuantizedPerAxisValueConverter converter(uniformQuantizedPerAxis);
        auto converted = converter.convert(realValue);
        // TODO: why we need this outConvertedType? remove it?
        if (converted) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingNotationConverterTest.groovy

        def 'converts lock notation to a ModuleComponentIdentifier'() {
            given:
            def converter = new DependencyLockingNotationConverter()
            def lockEntry = 'org:foo:1.1'
    
            when:
            def converted = converter.convertFromLockNotation(lockEntry)
    
            then:
            converted instanceof ModuleComponentIdentifier
            converted.group == 'org'
            converted.module == 'foo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/DaemonCommandLineConverterTest.groovy

        }
    
        def "can convert stop option - #options"() {
            when:
            def converted = convert(options)
    
            then:
            converted.stop == stop
    
            where:
            options    | stop
            []         | false
            ['--stop'] | true
        }
    
        def "can convert status option - #options"() {
            when:
            def converted = convert(options)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/typeconversion/DefaultTypeConverter.java

            return NotationParserBuilder
                .toType(type)
                .noImplicitConverters()
                .converter(converter)
                .toComposite();
        }
    
        private <T> void registerConverter(NotationConverter<Object, T> converter, Class<T> type) {
            parsers.put(type, build(converter, type));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. test/convert2.go

    	s = (*S)(t)
    	s = (*S)(u) // ERROR "cannot convert"
    	t = u       // ERROR "cannot use .* in assignment|incompatible type"
    	t = (*T)(u) // ERROR "cannot convert"
    }
    
    func _() {
    	var s []byte
    	_ = ([4]byte)(s)
    	_ = (*[4]byte)(s)
    
    	type A [4]byte
    	_ = (A)(s)
    	_ = (*A)(s)
    
    	type P *[4]byte
    	_ = (P)(s)
    	_ = (*P)(s) // ERROR "cannot convert"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 15:55:44 UTC 2022
    - 5.9K bytes
    - Viewed (0)
Back to top