Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for bytereg (0.18 sec)

  1. src/net/dnsconfig_unix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !windows
    
    // Read system DNS config from /etc/resolv.conf
    
    package net
    
    import (
    	"internal/bytealg"
    	"internal/stringslite"
    	"net/netip"
    	"time"
    )
    
    // See resolv.conf(5) on a Linux machine.
    func dnsReadConfig(filename string) *dnsConfig {
    	conf := &dnsConfig{
    		ndots:    1,
    		timeout:  5 * time.Second,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/io/fs/readdir.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fs
    
    import (
    	"errors"
    	"internal/bytealg"
    	"slices"
    )
    
    // ReadDirFS is the interface implemented by a file system
    // that provides an optimized implementation of [ReadDir].
    type ReadDirFS interface {
    	FS
    
    	// ReadDir reads the named directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/nistec_test.go

    		if !bytes.Equal(g1.Bytes(), newPoint().Bytes()) {
    			t.Error("[N - k]G + [k]G != ∞")
    		}
    	}
    
    	byteLen := len(c.Params().N.Bytes())
    	bitLen := c.Params().N.BitLen()
    	t.Run("0", func(t *testing.T) { checkScalar(t, make([]byte, byteLen)) })
    	t.Run("1", func(t *testing.T) {
    		checkScalar(t, big.NewInt(1).FillBytes(make([]byte, byteLen)))
    	})
    	t.Run("N-1", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 18:48:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. src/net/lookup_unix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix || js || wasip1
    
    package net
    
    import (
    	"context"
    	"internal/bytealg"
    	"sync"
    )
    
    var onceReadProtocols sync.Once
    
    // readProtocols loads contents of /etc/protocols into protocols map
    // for quick access.
    func readProtocols() {
    	file, err := open("/etc/protocols")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/internal/bytealg/index_ppc64x.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    package bytealg
    
    import "internal/cpu"
    
    const MaxBruteForce = 16
    
    var SupportsPower9 = cpu.PPC64.IsPOWER9
    
    func init() {
    	MaxLen = 32
    }
    
    // Cutover reports the number of failures of IndexByte we should tolerate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 09 05:34:46 UTC 2023
    - 637 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    	BitFields
    }
    
    // Parse parses the Arg out from the given binary instruction i.
    func (a argField) Parse(i [2]uint32) Arg {
    	switch a.Type {
    	default:
    		return nil
    	case TypeUnknown:
    		return nil
    	case TypeReg:
    		return R0 + Reg(a.BitFields.Parse(i))
    	case TypeCondRegBit:
    		return Cond0LT + CondReg(a.BitFields.Parse(i))
    	case TypeCondRegField:
    		return CR0 + CondReg(a.BitFields.Parse(i))
    	case TypeFPReg:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. src/compress/bzip2/bit_reader.go

    // newBitReader returns a new bitReader reading from r. If r is not
    // already an io.ByteReader, it will be converted via a bufio.Reader.
    func newBitReader(r io.Reader) bitReader {
    	byter, ok := r.(io.ByteReader)
    	if !ok {
    		byter = bufio.NewReader(r)
    	}
    	return bitReader{r: byter}
    }
    
    // ReadBits64 reads the given number of bits and returns them in the
    // least-significant part of a uint64. In the event of an error, it returns 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/internal/bytealg/compare_native.go

    // license that can be found in the LICENSE file.
    
    //go:build 386 || amd64 || s390x || arm || arm64 || loong64 || ppc64 || ppc64le || mips || mipsle || wasm || mips64 || mips64le || riscv64
    
    package bytealg
    
    import _ "unsafe" // For go:linkname
    
    //go:noescape
    func Compare(a, b []byte) int
    
    func CompareString(a, b string) int {
    	return abigen_runtime_cmpstring(a, b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 726 bytes
    - Viewed (0)
  9. src/internal/coverage/pkid.go

    //    slot: 4 path='runtime/internal/sys'  hard-coded id: 5
    //    slot: 5 path='internal/abi'  hard-coded id: 4
    //    slot: 6 path='runtime/internal/math'  hard-coded id: 6
    //    slot: 7 path='internal/bytealg'  hard-coded id: 7
    //    slot: 8 path='internal/goexperiment'
    //    slot: 9 path='internal/runtime/syscall'  hard-coded id: 8
    //    slot: 10 path='runtime'  hard-coded id: 9
    //    fatal error: runtime.addCovMeta
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/path/match.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package path
    
    import (
    	"errors"
    	"internal/bytealg"
    	"unicode/utf8"
    )
    
    // ErrBadPattern indicates a pattern was malformed.
    var ErrBadPattern = errors.New("syntax error in pattern")
    
    // Match reports whether name matches the shell pattern.
    // The pattern syntax is:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top