Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 209 for Zahlen (0.23 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go

    	Spares2     int16
    	Spare       [2]int64
    }
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno  uint64
    	Namlen  uint16
    	Type    uint8
    	Unused1 uint8
    	Unused2 uint32
    	Name    [256]int8
    }
    
    type Fsid struct {
    	Val [2]int32
    }
    
    const (
    	PathMax = 0x400
    )
    
    type RawSockaddrInet4 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. src/syscall/ztypes_darwin_arm64.go

    	Flags       uint32
    	Contigbytes int64
    	Devoffset   int64
    }
    
    type Fsid struct {
    	Val [2]int32
    }
    
    type Dirent struct {
    	Ino       uint64
    	Seekoff   uint64
    	Reclen    uint16
    	Namlen    uint16
    	Type      uint8
    	Name      [1024]int8
    	Pad_cgo_0 [3]byte
    }
    
    const (
    	pathMax = 0x400
    )
    
    type RawSockaddrInet4 struct {
    	Len    uint8
    	Family uint8
    	Port   uint16
    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/syscall/ztypes_openbsd_amd64.go

    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno       uint64
    	Off          int64
    	Reclen       uint16
    	Type         uint8
    	Namlen       uint8
    	X__d_padding [4]uint8
    	Name         [256]int8
    }
    
    type Fsid struct {
    	Val [2]int32
    }
    
    const (
    	pathMax = 0x400
    )
    
    type RawSockaddrInet4 struct {
    	Len    uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  4. test/fixedbugs/bug273.go

    }
    
    func bigchancap() {
    	g4 = make(chan cblock, big)
    }
    
    func overflowchan() {
    	const ptrSize = unsafe.Sizeof(uintptr(0))
    	g4 = make(chan cblock, 1<<(30*(ptrSize/4)))
    }
    
    func main() {
    	shouldfail(badlen, "badlen")
    	shouldfail(biglen, "biglen")
    	shouldfail(badcap, "badcap")
    	shouldfail(badcap1, "badcap1")
    	shouldfail(bigcap, "bigcap")
    	shouldfail(badchancap, "badchancap")
    	shouldfail(bigchancap, "bigchancap")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 26 14:06:28 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  5. src/html/escape.go

    		dst1 := dst + utf8.EncodeRune(b[dst:], x[0])
    		return dst1 + utf8.EncodeRune(b[dst1:], x[1]), src + i
    	} else if !attribute {
    		maxLen := len(entityName) - 1
    		if maxLen > longestEntityWithoutSemicolon {
    			maxLen = longestEntityWithoutSemicolon
    		}
    		for j := maxLen; j > 1; j-- {
    			if x := entity[string(entityName[:j])]; x != 0 {
    				return dst + utf8.EncodeRune(b[dst:], x), src + j + 1
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 13 07:00:18 UTC 2020
    - 5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                                                src[srcIndex + len + 1] != (byte)0x00 ) {
                        len += 2;
                        if( len > maxLen ) {
    if( log.level > 0 )
    Hexdump.hexdump( System.err, src, srcIndex, maxLen < 128 ? maxLen + 8 : 128 );
                            throw new RuntimeException( "zero termination not found" );
                        }
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/http2/hpack/huffman.go

    // Huffman-encoded strings.
    var ErrInvalidHuffman = errors.New("hpack: invalid Huffman-encoded data")
    
    // huffmanDecode decodes v to buf.
    // If maxLen is greater than 0, attempts to write more to buf than
    // maxLen bytes will return ErrStringLength.
    func huffmanDecode(buf *bytes.Buffer, maxLen int, v []byte) error {
    	rootHuffmanNode := getRootHuffmanNode()
    	n := rootHuffmanNode
    	// cur is the bit buffer that has not been fed into n.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  8. internal/grid/msg.go

    	}
    	if m.Flags&FlagCRCxxh3 != 0 {
    		const hashLen = 4
    		if len(h) < hashLen {
    			return nil, nil, fmt.Errorf("want crc len 4, got %v", len(h))
    		}
    		got := uint32(xxh3.Hash(b[:len(b)-hashLen]))
    		want := binary.LittleEndian.Uint32(h[len(h)-hashLen:])
    		if got != want {
    			return nil, nil, fmt.Errorf("crc mismatch: 0x%08x (given) != 0x%08x (bytes)", want, got)
    		}
    		h = h[:len(h)-hashLen]
    	}
    	// Extract subroute if any.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 28 19:22:29 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. pkg/ledger/ledger.go

    	// hash length is fixed at 64 bits until generic support is added
    	const hashLen = 64
    	byteVal := []byte(val)
    	if len(byteVal) < hashLen/8 {
    		// zero fill the left side of the slice
    		zerofill := make([]byte, hashLen/8)
    		byteVal = append(zerofill[:hashLen/8-len(byteVal)], byteVal...)
    	}
    	return byteVal[:hashLen/8]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go

    }
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno    uint64
    	Reclen    uint16
    	Namlen    uint16
    	Type      uint8
    	Name      [512]int8
    	Pad_cgo_0 [3]byte
    }
    
    type Fsid struct {
    	X__fsid_val [2]int32
    }
    
    const (
    	PathMax = 0x400
    )
    
    const (
    	ST_WAIT   = 0x1
    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