Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 324 for provider (0.11 sec)

  1. src/go/types/resolver.go

    					check.error(d.spec, InvalidInitDecl, "cannot import package as init - init must be a func")
    					return
    				}
    
    				// add package to list of explicit imports
    				// (this functionality is provided as a convenience
    				// for clients; it is not needed for type-checking)
    				if !pkgImports[imp] {
    					pkgImports[imp] = true
    					pkg.imports = append(pkg.imports, imp)
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	// to fully parse before. Unlike buf, we own this data.
    	saveBuf bytes.Buffer
    
    	firstField bool // processing the first field of the header block
    }
    
    // NewDecoder returns a new decoder with the provided maximum dynamic
    // table size. The emitFunc will be called for each valid field
    // parsed, in the same goroutine as calls to Write, before Write returns.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. src/net/conf.go

    	// Issue #10714.
    	case "android":
    		return true
    
    	default:
    		return false
    	}
    }
    
    // mustUseGoResolver reports whether a DNS lookup of any sort is
    // required to use the go resolver. The provided Resolver is optional.
    // This will report true if the cgo resolver is not available.
    func (c *conf) mustUseGoResolver(r *Resolver) bool {
    	if !cgoAvailable {
    		return true
    	}
    
    	if runtime.GOOS == "plan9" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/mime/encodedword.go

    )
    
    var (
    	errInvalidWord = errors.New("mime: invalid RFC 2047 encoded-word")
    )
    
    // Encode returns the encoded-word form of s. If s is ASCII without special
    // characters, it is returned unchanged. The provided charset is the IANA
    // charset name of s. It is case insensitive.
    func (e WordEncoder) Encode(charset, s string) string {
    	if !needsEncoding(s) {
    		return s
    	}
    	return e.encodeWord(charset, s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/archive/tar/format.go

    //
    // The table's lower portion shows specialized features of each format,
    // such as supported string encodings, support for sub-second timestamps,
    // or support for sparse files.
    //
    // The Writer currently provides no support for sparse files.
    type Format int
    
    // Constants to identify various tar formats.
    const (
    	// Deliberately hide the meaning of constants from public API.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/workcmd/edit.go

    	"golang.org/x/mod/module"
    
    	"golang.org/x/mod/modfile"
    )
    
    var cmdEdit = &base.Command{
    	UsageLine: "go work edit [editing flags] [go.work]",
    	Short:     "edit go.work from tools or scripts",
    	Long: `Edit provides a command-line interface for editing go.work,
    for use primarily by tools or scripts. It only reads go.work;
    it does not look up information about the modules involved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/net/unixsock_test.go

    func TestUnixgramZeroByteBuffer(t *testing.T) {
    	if !testableNetwork("unixgram") {
    		t.Skip("unixgram test")
    	}
    	// issue 4352: Recvfrom failed with "address family not
    	// supported by protocol family" if zero-length buffer provided
    
    	c1 := newLocalPacketListener(t, "unixgram")
    	defer os.Remove(c1.LocalAddr().String())
    	defer c1.Close()
    
    	c2, err := Dial("unixgram", c1.LocalAddr().String())
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/clean/clean.go

    The -fuzzcache flag causes clean to remove files stored in the Go build
    cache for fuzz testing. The fuzzing engine caches files that expand
    code coverage, so removing them may make fuzzing less effective until
    new inputs are found that provide the same coverage. These files are
    distinct from those stored in testdata directory; clean does not remove
    those files.
    
    For more about build flags, see 'go help build'.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/transform/transform.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package transform provides reader and writer wrappers that transform the
    // bytes passing through as well as various transformations. Example
    // transformations provided by other packages include normalization and
    // conversion between character sets.
    package transform // import "golang.org/x/text/transform"
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. src/go/scanner/scanner_test.go

    	}
    	if pos.Column != expected.Column {
    		t.Errorf("bad column for %q: got %d, expected %d", lit, pos.Column, expected.Column)
    	}
    }
    
    // Verify that calling Scan() provides the correct results.
    func TestScan(t *testing.T) {
    	whitespace_linecount := newlineCount(whitespace)
    
    	// error handler
    	eh := func(_ token.Position, msg string) {
    		t.Errorf("error handler called (msg = %s)", msg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top