Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for numbertype (0.4 sec)

  1. tensorflow/c/ops.h

    // capital letters, the operator expects the user to provide the attribute value
    // at operation runtime.
    //
    // <type> can be:
    //   "string", "int", "float", "bool", "type", "shape", or "tensor"
    //   "numbertype", "realnumbertype", "quantizedtype"
    //       (meaning "type" with a restriction on valid values)
    //   "{int32,int64}" or {realnumbertype,quantizedtype,string}"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. src/encoding/json/decode.go

    	}
    	f, err := strconv.ParseFloat(s, 64)
    	if err != nil {
    		return nil, &UnmarshalTypeError{Value: "number " + s, Type: reflect.TypeFor[float64](), Offset: int64(d.off)}
    	}
    	return f, nil
    }
    
    var numberType = reflect.TypeFor[Number]()
    
    // literalStore decodes a literal stored in item into v.
    //
    // fromQuoted indicates whether this literal came from unwrapping a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. src/encoding/json/encode.go

    	e.Write(b)
    }
    
    var (
    	float32Encoder = (floatEncoder(32)).encode
    	float64Encoder = (floatEncoder(64)).encode
    )
    
    func stringEncoder(e *encodeState, v reflect.Value, opts encOpts) {
    	if v.Type() == numberType {
    		numStr := v.String()
    		// In Go1.5 the empty string encodes to "0", while this is not a valid number literal
    		// we keep compatibility so check validity after this.
    		if numStr == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                        }
                        String memberType = (String) memberOf.get("@odata.type");
                        if (memberType == null) {
                            logger.warn("@odata.type is null: {}", memberOf);
                            continue;
                        }
                        memberType = memberType.toLowerCase(Locale.ENGLISH);
                        final String id = (String) memberOf.get("id");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top