Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 151 for provider (0.09 sec)

  1. src/net/net.go

    // license that can be found in the LICENSE file.
    
    /*
    Package net provides a portable interface for network I/O, including
    TCP/IP, UDP, domain name resolution, and Unix domain sockets.
    
    Although the package provides access to low-level networking
    primitives, most clients will need only the basic interface provided
    by the [Dial], [Listen], and Accept functions and the associated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    //
    // If the hint is non-nil buts its first token does not match,
    // the new line is added after the block containing hint
    // (or hint itself, if not in a block).
    //
    // If no hint is provided, addLine appends the line to the end of
    // the last block with a matching first token,
    // or to the end of the file if no such block exists.
    func (x *FileSyntax) addLine(hint Expr, tokens ...string) *Line {
    	if hint == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/internal/trace/generation.go

    		}
    		return true
    	})
    	return err
    }
    
    // addStrings takes a batch whose first byte is an EvStrings event
    // (indicating that the batch contains only strings) and adds each
    // string contained therein to the provided strings map.
    func addStrings(stringTable *dataTable[stringID, string], b batch) error {
    	if !b.isStringsBatch() {
    		return fmt.Errorf("internal error: addStrings called on non-string batch")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/internal/bisect/bisect.go

    //			}
    //		}
    //		return m.ShouldEnable(h)
    //	}
    //
    // This specific helper – deciding whether to enable a change identified by
    // file and line number and printing about the change when necessary – is
    // provided by the [Matcher.FileLine] method.
    //
    // Another common usage is deciding whether to make a change in a function
    // based on the caller's stack, to identify the specific calling contexts that the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. src/runtime/cgocall.go

    	// actually know how big the stack is, like we don't know how big any
    	// scheduling stack is, but we assume there's at least 32 kB. If we
    	// can get a more accurate stack bound from pthread, use that, provided
    	// it actually contains SP..
    	g0.stack.hi = sp + 1024
    	g0.stack.lo = sp - 32*1024
    	if !signal && _cgo_getstackbound != nil {
    		// Don't adjust if called from the signal handler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/decl.go

    			if check.inTParamList && isGeneric(obj.typ) {
    				tparCycle = true
    				break loop
    			}
    
    			// Determine if the type name is an alias or not. For
    			// package-level objects, use the object map which
    			// provides syntactic information (which doesn't rely
    			// on the order in which the objects are set up). For
    			// local objects, we can rely on the order, so use
    			// the object's predicate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    // convention that "bad" implies a problem with syntax, and "invalid" implies a
    // problem with types.
    
    const (
    	// InvalidSyntaxTree occurs if an invalid syntax tree is provided
    	// to the type checker. It should never happen.
    	InvalidSyntaxTree ErrorCode = -1
    )
    
    const (
    	_ ErrorCode = iota
    
    	// Test is reserved for errors that only apply while in self-test mode.
    	Test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. src/go/types/issues_test.go

    }
    
    func TestIssue61938(t *testing.T) {
    	const src = `
    package p
    
    func f[T any]() {}
    func _()        { f() }
    `
    	// no error handler provided (this issue)
    	var conf Config
    	typecheck(src, &conf, nil) // must not panic
    
    	// with error handler (sanity check)
    	conf.Error = func(error) {}
    	typecheck(src, &conf, nil) // must not panic
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. src/net/http/cookiejar/jar.go

    package cookiejar
    
    import (
    	"cmp"
    	"errors"
    	"fmt"
    	"net"
    	"net/http"
    	"net/http/internal/ascii"
    	"net/url"
    	"slices"
    	"strings"
    	"sync"
    	"time"
    )
    
    // PublicSuffixList provides the public suffix of a domain. For example:
    //   - the public suffix of "example.com" is "com",
    //   - the public suffix of "foo1.foo2.foo3.co.uk" is "co.uk", and
    //   - the public suffix of "bar.pvt.k12.ma.us" is "pvt.k12.ma.us".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/cmd/dist/buildtool.go

    	"internal/goarch",
    	"internal/godebugs",
    	"internal/goexperiment",
    	"internal/goroot",
    	"internal/gover",
    	"internal/goversion",
    	// internal/lazyregexp is provided by Go 1.17, which permits it to
    	// be imported by other packages in this list, but is not provided
    	// by the Go 1.17 version of gccgo. It's on this list only to
    	// support gccgo, and can be removed if we require gccgo 14 or later.
    	"internal/lazyregexp",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top