Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for FLOAT64 (0.1 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		// Accept inputs that contain CBOR tags.
    		TagsMd: cbor.TagsAllowed,
    
    		// Decode type 0 (unsigned integer) as int64.
    		// TODO: IntDecConvertSignedOrFail errors on overflow, JSON will try to fall back to float64.
    		IntDec: cbor.IntDecConvertSignedOrFail,
    
    		// Disable producing map[cbor.ByteString]interface{}, which is not acceptable for
    		// decodes into interface{}.
    		MapKeyByteString: cbor.MapKeyByteStringForbidden,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/decls0.go

    	// But at least we get an error.
    	iA1 [1 /* ERROR "invalid array length" */ <<100]int
    	iA2 [- /* ERROR "invalid array length" */ 1]complex128
    	iA3 ["foo" /* ERROR "must be integer" */ ]string
    	iA4 [float64 /* ERROR "must be integer" */ (0)]int
    )
    
    
    type (
    	p1 pi.foo /* ERROR "pi.foo is not a type" */
    	p2 unsafe.Pointer
    )
    
    
    type (
    	Pi pi /* ERROR "not a type" */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch.go

    				// should not be set
    				if len(filteredSubMap) != 0 {
    					filteredMap[key] = filteredSubMap
    				}
    
    			case []interface{}, string, float64, bool, int64, nil:
    				// Lists are always replaced in Json, no need to check each entry in the list.
    				if !keepNull {
    					filteredMap[key] = val
    				}
    			default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. internal/config/scanner/scanner.go

    	EnvMaxWait       = "MINIO_SCANNER_MAX_WAIT"
    	EnvMaxWaitLegacy = "MINIO_CRAWLER_MAX_WAIT"
    )
    
    // Config represents the heal settings.
    type Config struct {
    	// Delay is the sleep multiplier.
    	Delay float64 `json:"delay"`
    
    	// Sleep always or based on incoming S3 requests.
    	IdleMode int32 // 0 => on, 1 => off
    
    	// Alert upon this many excess object versions
    	ExcessVersions int64 // 100
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/internal/goobj/builtinlist.go

    	{"type:*uint32", 0},
    	{"type:int64", 0},
    	{"type:*int64", 0},
    	{"type:uint64", 0},
    	{"type:*uint64", 0},
    	{"type:float32", 0},
    	{"type:*float32", 0},
    	{"type:float64", 0},
    	{"type:*float64", 0},
    	{"type:complex64", 0},
    	{"type:*complex64", 0},
    	{"type:complex128", 0},
    	{"type:*complex128", 0},
    	{"type:unsafe.Pointer", 0},
    	{"type:*unsafe.Pointer", 0},
    	{"type:uintptr", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/cmd/test2json/main.go

    // corresponding to the Go struct:
    //
    //	type TestEvent struct {
    //		Time    time.Time // encodes as an RFC3339-format string
    //		Action  string
    //		Package string
    //		Test    string
    //		Elapsed float64 // seconds
    //		Output  string
    //	}
    //
    // The Time field holds the time the event happened.
    // It is conventionally omitted for cached test results.
    //
    // The Action field is one of a fixed set of action descriptions:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/internal/fmtsort/sort.go

    		return cmp.Compare(aVal.Uint(), bVal.Uint())
    	case reflect.String:
    		return cmp.Compare(aVal.String(), bVal.String())
    	case reflect.Float32, reflect.Float64:
    		return cmp.Compare(aVal.Float(), bVal.Float())
    	case reflect.Complex64, reflect.Complex128:
    		a, b := aVal.Complex(), bVal.Complex()
    		if c := cmp.Compare(real(a), real(b)); c != 0 {
    			return c
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. pilot/pkg/xds/xdsgen.go

    		VersionInfo: req.Push.PushVersion,
    		Nonce:       nonce(req.Push.LedgerVersion),
    		Resources:   xds.ResourcesToAny(res),
    	}
    
    	configSize := ResourceSize(res)
    	configSizeBytes.With(typeTag.Value(w.TypeUrl)).Record(float64(configSize))
    
    	ptype := "PUSH"
    	if logdata.Incremental {
    		ptype = "PUSH INC"
    	}
    
    	if err := xds.Send(con, resp); err != nil {
    		if recordSendError(w.TypeUrl, err) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. pkg/bootstrap/option/instances.go

    	}
    	return skipOption("load_stats_config_json_str")
    }
    
    type HistogramMatch struct {
    	Prefix string `json:"prefix"`
    }
    type HistogramBucket struct {
    	Match   HistogramMatch `json:"match"`
    	Buckets []float64      `json:"buckets"`
    }
    
    func EnvoyHistogramBuckets(value []HistogramBucket) Instance {
    	return newOption("histogram_buckets", value)
    }
    
    func EnvoyStatsCompression(value string) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. api/go1.23.txt

    pkg reflect, type Type interface, CanSeq() bool #66056
    pkg reflect, type Type interface, CanSeq2() bool #66056
    pkg reflect, type Type interface, OverflowComplex(complex128) bool #60427
    pkg reflect, type Type interface, OverflowFloat(float64) bool #60427
    pkg reflect, type Type interface, OverflowInt(int64) bool #60427
    pkg reflect, type Type interface, OverflowUint(uint64) bool #60427
    pkg runtime/debug, func SetCrashOutput(*os.File, CrashOptions) error #42888
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top