Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 148 for toBytes (0.31 sec)

  1. src/encoding/gob/type_test.go

    	"reflect"
    	"sync"
    	"testing"
    )
    
    type typeT struct {
    	id  typeId
    	str string
    }
    
    var basicTypes = []typeT{
    	{tBool, "bool"},
    	{tInt, "int"},
    	{tUint, "uint"},
    	{tFloat, "float"},
    	{tBytes, "bytes"},
    	{tString, "string"},
    }
    
    func getTypeUnlocked(name string, rt reflect.Type) gobType {
    	typeLock.Lock()
    	defer typeLock.Unlock()
    	t, err := getBaseType(name, rt)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. src/syscall/ztypes_openbsd_amd64.go

    	Metric       uint32
    	Pad          uint32
    	Baudrate     uint64
    	Ipackets     uint64
    	Ierrors      uint64
    	Opackets     uint64
    	Oerrors      uint64
    	Collisions   uint64
    	Ibytes       uint64
    	Obytes       uint64
    	Imcasts      uint64
    	Omcasts      uint64
    	Iqdrops      uint64
    	Noproto      uint64
    	Capabilities uint32
    	Pad_cgo_0    [4]byte
    	Lastchange   Timeval
    	Mclpool      [7]Mclpool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  3. src/runtime/string.go

    	}
    
    	*(*slice)(unsafe.Pointer(&b)) = slice{p, size, int(mem / 4)}
    	return
    }
    
    // used by cmd/cgo
    func gobytes(p *byte, n int) (b []byte) {
    	if n == 0 {
    		return make([]byte, 0)
    	}
    
    	if n < 0 || uintptr(n) > maxAlloc {
    		panic(errorString("gobytes: length out of range"))
    	}
    
    	bp := mallocgc(uintptr(n), nil, false)
    	memmove(bp, unsafe.Pointer(p), uintptr(n))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go

    	Mtu        uint64
    	Metric     uint64
    	Link_state uint64
    	Baudrate   uint64
    	Ipackets   uint64
    	Ierrors    uint64
    	Opackets   uint64
    	Oerrors    uint64
    	Collisions uint64
    	Ibytes     uint64
    	Obytes     uint64
    	Imcasts    uint64
    	Omcasts    uint64
    	Iqdrops    uint64
    	Noproto    uint64
    	Hwassist   uint64
    	Oqdrops    uint64
    	Lastchange Timeval
    }
    
    type IfaMsghdr struct {
    	Msglen    uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. src/syscall/ztypes_darwin_arm64.go

    	Unused1    uint8
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint32
    	Ipackets   uint32
    	Ierrors    uint32
    	Opackets   uint32
    	Oerrors    uint32
    	Collisions uint32
    	Ibytes     uint32
    	Obytes     uint32
    	Imcasts    uint32
    	Omcasts    uint32
    	Iqdrops    uint32
    	Noproto    uint32
    	Recvtiming uint32
    	Xmittiming uint32
    	Lastchange Timeval32
    	Unused2    uint32
    	Hwassist   uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  6. src/syscall/ztypes_darwin_amd64.go

    	Unused1    uint8
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint32
    	Ipackets   uint32
    	Ierrors    uint32
    	Opackets   uint32
    	Oerrors    uint32
    	Collisions uint32
    	Ibytes     uint32
    	Obytes     uint32
    	Imcasts    uint32
    	Omcasts    uint32
    	Iqdrops    uint32
    	Noproto    uint32
    	Recvtiming uint32
    	Xmittiming uint32
    	Lastchange Timeval32
    	Unused2    uint32
    	Hwassist   uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  7. docs/fr/docs/tutorial/query-params.md

    Faisant partie de l'URL, ces valeurs sont des chaînes de caractères (`str`).
    
    Mais quand on les déclare avec des types Python (dans l'exemple précédent, en tant qu'`int`), elles sont converties dans les types renseignés.
    
    Toutes les fonctionnalités qui s'appliquent aux paramètres de chemin s'appliquent aussi aux paramètres de requête :
    
    * Support de l'éditeur : vérification d'erreurs, auto-complétion, etc.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

       * malformed.
       */
      @Throws(IOException::class)
      fun checkLowercase(name: ByteString): ByteString {
        for (i in 0 until name.size) {
          if (name[i] in 'A'.code.toByte()..'Z'.code.toByte()) {
            throw IOException("PROTOCOL_ERROR response malformed: mixed case name: ${name.utf8()}")
          }
        }
        return name
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go

    	Hdrlen     uint8
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint32
    	Ipackets   uint32
    	Ierrors    uint32
    	Opackets   uint32
    	Oerrors    uint32
    	Collisions uint32
    	Ibytes     uint32
    	Obytes     uint32
    	Imcasts    uint32
    	Omcasts    uint32
    	Iqdrops    uint32
    	Noproto    uint32
    	Lastchange Timeval32
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go

    	Link_state int32
    	Mtu        uint64
    	Metric     uint64
    	Baudrate   uint64
    	Ipackets   uint64
    	Ierrors    uint64
    	Opackets   uint64
    	Oerrors    uint64
    	Collisions uint64
    	Ibytes     uint64
    	Obytes     uint64
    	Imcasts    uint64
    	Omcasts    uint64
    	Iqdrops    uint64
    	Noproto    uint64
    	Lastchange Timespec
    }
    
    type IfaMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top