Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for provider (0.34 sec)

  1. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    	'|':  true,
    	'~':  true,
    }
    
    func IsTokenRune(r rune) bool {
    	return r < utf8.RuneSelf && isTokenTable[byte(r)]
    }
    
    // HeaderValuesContainsToken reports whether any string in values
    // contains the provided token, ASCII case-insensitively.
    func HeaderValuesContainsToken(values []string, token string) bool {
    	for _, v := range values {
    		if headerValueContainsToken(v, token) {
    			return true
    		}
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/net/dnsclient.go

    package net
    
    import (
    	"cmp"
    	"internal/bytealg"
    	"internal/itoa"
    	"slices"
    	_ "unsafe" // for go:linkname
    
    	"golang.org/x/net/dns/dnsmessage"
    )
    
    // provided by runtime
    //
    //go:linkname runtime_rand runtime.rand
    func runtime_rand() uint64
    
    func randInt() int {
    	return int(uint(runtime_rand()) >> 1) // clear sign bit
    }
    
    func randIntn(n int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/expvar/expvar.go

    // Copyright 2009 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 expvar provides a standardized interface to public variables, such
    // as operation counters in servers. It exposes these variables via HTTP at
    // /debug/vars in JSON format. As of Go 1.22, the /debug/vars request must
    // use GET.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/macho_update_uuid.go

    // Copyright 2024 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 ld
    
    // This file provides helper functions for updating/rewriting the UUID
    // load command within a Go go binary generated on Darwin using
    // external linking. Why is it necessary to update the UUID load
    // command? See issue #64947 for more detail, but the short answer is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/net/ipsock.go

    // IPv4 address inside an IPv6 address at transport layer
    // protocols. See RFC 4291, RFC 4038 and RFC 3493.
    func supportsIPv4map() bool {
    	// Some operating systems provide no support for mapping IPv4
    	// addresses to IPv6, and a runtime check is unnecessary.
    	switch runtime.GOOS {
    	case "dragonfly", "openbsd":
    		return false
    	}
    
    	ipStackCaps.Once.Do(ipStackCaps.probe)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/iter/iter.go

    // Copyright 2023 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 iter provides basic definitions and operations
    // related to iteration in Go.
    package iter
    
    import (
    	"internal/race"
    	"runtime"
    	"unsafe"
    )
    
    // Seq is an iterator over sequences of individual values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/internal/byteorder/byteorder.go

    // Copyright 2024 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 byteorder provides functions for decoding and encoding
    // little and big endian integer types from/to byte slices.
    package byteorder
    
    func LeUint16(b []byte) uint16 {
    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 20:31:29 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/internal/fmtsort/sort.go

    // Copyright 2018 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 fmtsort provides a general stable ordering mechanism
    // for maps, on behalf of the fmt and text/template packages.
    // It is not guaranteed to be efficient and works only for types
    // that are valid map keys.
    package fmtsort
    
    import (
    	"cmp"
    	"reflect"
    	"slices"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. src/testing/internal/testdeps/deps.go

    // Copyright 2016 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 testdeps provides access to dependencies needed by test execution.
    //
    // This package is imported by the generated main package, which passes
    // TestDeps into testing.Main. This allows tests to use packages at run time
    // without making those packages direct dependencies of package testing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/internal/trace/internal/testgen/go122/trace.go

    // has to pass their own timestamp into those events anyway.
    func (t *Trace) DisableTimestamps() {
    	t.validTimestamps = false
    }
    
    // Generation creates a new trace generation.
    //
    // This provides more structure than Event to allow for more easily
    // creating complex traces that are mostly or completely correct.
    func (t *Trace) Generation(gen uint64) *Generation {
    	g := &Generation{
    		trace:   t,
    		gen:     gen,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top