Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 92 for quint8 (0.11 sec)

  1. src/cmd/compile/internal/typecheck/builtin.go

    	typs[61] = newSig(params(typs[60]), params(typs[7]))
    	typs[62] = newSig(params(typs[24]), params(typs[7]))
    	typs[63] = newSig(params(typs[28]), params(typs[7]))
    	typs[64] = types.Types[types.TUINT8]
    	typs[65] = types.NewSlice(typs[64])
    	typs[66] = newSig(params(typs[65]), params(typs[7]))
    	typs[67] = newSig(params(typs[1], typs[1]), params(typs[1]))
    	typs[68] = newSig(params(typs[1], typs[1], typs[1]), nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. src/runtime/map_fast64.go

    				top := b.tophash[i]
    				if isEmpty(top) {
    					b.tophash[i] = evacuatedEmpty
    					continue
    				}
    				if top < minTopHash {
    					throw("bad map state")
    				}
    				var useY uint8
    				if !h.sameSizeGrow() {
    					// Compute hash to make our evacuation decision (whether we need
    					// to send this key/elem to bucket x or bucket y).
    					hash := t.Hasher(k, uintptr(h.hash0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/issues_test.go

    		var want Type
    		switch x := x.(type) {
    		case *syntax.BasicLit:
    			switch x.Value {
    			case `8`:
    				want = Typ[Uint8]
    			case `16`:
    				want = Typ[Uint16]
    			case `32`:
    				want = Typ[Uint32]
    			case `64`:
    				want = Typ[Uint] // because of "+ s", s is of type uint
    			case `"foo"`:
    				want = Typ[String]
    			}
    		case *syntax.Name:
    			if x.Value == "nil" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/runtime/map_fast32.go

    				top := b.tophash[i]
    				if isEmpty(top) {
    					b.tophash[i] = evacuatedEmpty
    					continue
    				}
    				if top < minTopHash {
    					throw("bad map state")
    				}
    				var useY uint8
    				if !h.sameSizeGrow() {
    					// Compute hash to make our evacuation decision (whether we need
    					// to send this key/elem to bucket x or bucket y).
    					hash := t.Hasher(k, uintptr(h.hash0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/encoding/gob/encoder_test.go

    	"strings"
    	"testing"
    )
    
    // Test basic operations in a safe manner.
    func TestBasicEncoderDecoder(t *testing.T) {
    	var values = []any{
    		true,
    		int(123),
    		int8(123),
    		int16(-12345),
    		int32(123456),
    		int64(-1234567),
    		uint(123),
    		uint8(123),
    		uint16(12345),
    		uint32(123456),
    		uint64(1234567),
    		uintptr(12345678),
    		float32(1.2345),
    		float64(1.2345678),
    		complex64(1.2345 + 2.3456i),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. src/math/rand/v2/rand.go

    // from the default Source.
    // It panics if n <= 0.
    func IntN(n int) int { return globalRand.IntN(n) }
    
    // UintN returns, as a uint, a pseudo-random number in the half-open interval [0,n)
    // from the default Source.
    // It panics if n <= 0.
    func UintN(n uint) uint { return globalRand.UintN(n) }
    
    // N returns a pseudo-random number in the half-open interval [0,n) from the default Source.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/stream_executor/stream_executor.cc

                                   c_status.get());
        return StatusFromTF_Status(c_status.get());
      }
      absl::Status Memset(Stream* stream, DeviceMemoryBase* location, uint8 pattern,
                          uint64 size) override {
        OwnedTFStatus c_status(TF_NewStatus());
        SP_Stream stream_handle = static_cast<CStream*>(stream)->Handle();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. src/log/slog/value.go

    		return StringValue(v)
    	case int:
    		return Int64Value(int64(v))
    	case uint:
    		return Uint64Value(uint64(v))
    	case int64:
    		return Int64Value(v)
    	case uint64:
    		return Uint64Value(v)
    	case bool:
    		return BoolValue(v)
    	case time.Duration:
    		return DurationValue(v)
    	case time.Time:
    		return TimeValue(v)
    	case uint8:
    		return Uint64Value(uint64(v))
    	case uint16:
    		return Uint64Value(uint64(v))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. cmd/api-router.go

    	{
    		api:     "analytics",
    		methods: []string{http.MethodDelete, http.MethodPut, http.MethodGet},
    		queries: []string{"analytics", ""},
    	},
    }
    
    // Set of s3 handler options as bit flags.
    type s3HFlag uint8
    
    const (
    	// when provided, disables Gzip compression.
    	noGZS3HFlag = 1 << iota
    
    	// when provided, enables only tracing of headers. Otherwise, both headers
    	// and body are traced.
    	traceHdrsS3HFlag
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. internal/config/notify/parse.go

    		if err != nil {
    			return nil, err
    		}
    
    		qosEnv := target.EnvMQTTQoS
    		if k != config.Default {
    			qosEnv = qosEnv + config.Default + k
    		}
    
    		// Parse uint8 value
    		qos, err := strconv.ParseUint(env.Get(qosEnv, kv.Get(target.MqttQoS)), 10, 8)
    		if err != nil {
    			return nil, err
    		}
    
    		topicEnv := target.EnvMQTTTopic
    		if k != config.Default {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top