Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 92 for quint8 (0.11 sec)

  1. src/runtime/export_test.go

    	return (*pallocBits)(b).find(npages, searchIdx)
    }
    func (b *PallocBits) AllocRange(i, n uint)       { (*pallocBits)(b).allocRange(i, n) }
    func (b *PallocBits) Free(i, n uint)             { (*pallocBits)(b).free(i, n) }
    func (b *PallocBits) Summarize() PallocSum       { return PallocSum((*pallocBits)(b).summarize()) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    // end to ensure backwards compatibility.
    
    // The type of data stored in a tensor.
    enum TensorType : byte {
      FLOAT32 = 0,
      FLOAT16 = 1,
      INT32 = 2,
      UINT8 = 3,
      INT64 = 4,
      STRING = 5,
      BOOL = 6,
      INT16 = 7,
      COMPLEX64 = 8,
      INT8 = 9,
      FLOAT64 = 10,
      COMPLEX128 = 11,
      UINT64 = 12,
      // Experimental: Resource and variant types are experimental, that are subject
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. src/cmd/go/internal/fsys/fsys.go

    		// do nothing to the path
    		return path
    	default:
    		return path[0 : len(path)-1] // chop off trailing separator
    	}
    }
    
    func volumeNameLen(path string) int {
    	isSlash := func(c uint8) bool {
    		return c == '\\' || c == '/'
    	}
    	if len(path) < 2 {
    		return 0
    	}
    	// with drive letter
    	c := path[0]
    	if path[1] == ':' && ('a' <= c && c <= 'z' || 'A' <= c && c <= 'Z') {
    		return 2
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server_tls13.go

    	if err := transcriptMsg(hs.clientHello, hs.transcript); err != nil {
    		return nil, err
    	}
    	chHash := hs.transcript.Sum(nil)
    	hs.transcript.Reset()
    	hs.transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
    	hs.transcript.Write(chHash)
    
    	helloRetryRequest := &serverHelloMsg{
    		vers:              hs.hello.vers,
    		random:            helloRetryRequestRandom,
    		sessionId:         hs.hello.sessionId,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/go/doc/reader.go

    	"complex128": true,
    	"error":      true,
    	"float32":    true,
    	"float64":    true,
    	"int":        true,
    	"int8":       true,
    	"int16":      true,
    	"int32":      true,
    	"int64":      true,
    	"rune":       true,
    	"string":     true,
    	"uint":       true,
    	"uint8":      true,
    	"uint16":     true,
    	"uint32":     true,
    	"uint64":     true,
    	"uintptr":    true,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. cmd/erasure-healing.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/sync/errgroup"
    	"golang.org/x/exp/slices"
    )
    
    //go:generate stringer -type=healingMetric -trimprefix=healingMetric $GOFILE
    
    type healingMetric uint8
    
    const (
    	healingMetricBucket healingMetric = iota
    	healingMetricObject
    	healingMetricCheckAbandonedParts
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  7. internal/grid/grid_test.go

    	_ = x[StateConnected-2]
    	_ = x[StateConnectionError-3]
    	_ = x[StateShutdown-4]
    }
    
    const stateName = "UnconnectedConnectingConnectedConnectionErrorShutdown"
    
    var stateIndex = [...]uint8{0, 11, 21, 30, 45, 53}
    
    func (i State) String() string {
    	if i >= State(len(stateIndex)-1) {
    		return "State(" + strconv.FormatInt(int64(i), 10) + ")"
    	}
    	return stateName[stateIndex[i]:stateIndex[i+1]]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/builtins0.go

    	_ = unsafe.Sizeof(nil /* ERROR "untyped nil" */ )
    	unsafe /* ERROR "not used" */ .Sizeof(x)
    
    	// basic types have size guarantees
    	assert(unsafe.Sizeof(byte(0)) == 1)
    	assert(unsafe.Sizeof(uint8(0)) == 1)
    	assert(unsafe.Sizeof(int8(0)) == 1)
    	assert(unsafe.Sizeof(uint16(0)) == 2)
    	assert(unsafe.Sizeof(int16(0)) == 2)
    	assert(unsafe.Sizeof(uint32(0)) == 4)
    	assert(unsafe.Sizeof(int32(0)) == 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  9. cmd/xl-storage-disk-id-check.go

    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/logger"
    )
    
    //go:generate stringer -type=storageMetric -trimprefix=storageMetric $GOFILE
    
    type storageMetric uint8
    
    const (
    	storageMetricMakeVolBulk storageMetric = iota
    	storageMetricMakeVol
    	storageMetricListVols
    	storageMetricStatVol
    	storageMetricDeleteVol
    	storageMetricWalkDir
    	storageMetricListDir
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool-decom.go

    //msgp:ignore decomMetrics
    type decomMetrics struct{}
    
    var globalDecommissionMetrics decomMetrics
    
    //msgp:ignore decomMetric
    //go:generate stringer -type=decomMetric -trimprefix=decomMetric $GOFILE
    type decomMetric uint8
    
    const (
    	decomMetricDecommissionBucket decomMetric = iota
    	decomMetricDecommissionObject
    	decomMetricDecommissionRemoveObject
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
Back to top