Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 149 for provider (0.08 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package facts defines a serializable set of analysis.Fact.
    //
    // It provides a partial implementation of the Fact-related parts of the
    // analysis.Pass interface for use in analysis drivers such as "go vet"
    // and other build systems.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/net/http/cookie.go

    		if cookie, err := ParseSetCookie(line); err == nil {
    			cookies = append(cookies, cookie)
    		}
    	}
    	return cookies
    }
    
    // SetCookie adds a Set-Cookie header to the provided [ResponseWriter]'s headers.
    // The provided cookie must have a valid Name. Invalid cookies may be
    // silently dropped.
    func SetCookie(w ResponseWriter, cookie *Cookie) {
    	if v := cookie.String(); v != "" {
    		w.Header().Add("Set-Cookie", v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/io/io.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 io provides basic interfaces to I/O primitives.
    // Its primary job is to wrap existing implementations of such primitives,
    // such as those in package os, into shared public interfaces that
    // abstract the functionality, plus some other related primitives.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/toolchain/select.go

    	// we provide the expected version and then run.
    	// This check is delayed until after the handling of auto and path
    	// so that we have initialized gover.Startup for use in error messages.
    	if target := os.Getenv(targetEnv); target != "" && TestVersionSwitch != "loop" {
    		if gover.LocalToolchain() != target {
    			base.Fatalf("toolchain %v invoked to provide %v", gover.LocalToolchain(), target)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. src/testing/fuzz.go

    //
    // Fuzz tests run generated inputs against a provided fuzz target, which can
    // find and report potential bugs in the code being tested.
    //
    // A fuzz test runs the seed corpus by default, which includes entries provided
    // by (*F).Add and entries in the testdata/fuzz/<FuzzTestName> directory. After
    // any necessary setup and calls to (*F).Add, the fuzz test must then call
    // (*F).Fuzz to provide the fuzz target. See the testing package documentation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. src/internal/trace/event.go

    	Value Value
    }
    
    // Label provides details about a Label event.
    type Label struct {
    	// Label is the label applied to some resource.
    	Label string
    
    	// Resource is the resource to which this label should be applied.
    	Resource ResourceID
    }
    
    // Range provides details about a Range event.
    type Range struct {
    	// Name is a human-readable name for the range.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/fsys/fsys.go

    	for _, entry := range entries {
    		info, err := entry.Info()
    		if err != nil {
    			continue
    		}
    		fis = append(fis, info)
    	}
    	return fis, nil
    }
    
    // ReadDir provides a slice of fs.FileInfo entries corresponding
    // to the overlaid files in the directory.
    func ReadDir(dir string) ([]fs.FileInfo, error) {
    	Trace("ReadDir", dir)
    	dir = canonicalize(dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. src/go/doc/example.go

    		return true
    	}
    	rune, _ := utf8.DecodeRuneInString(name[len(prefix):])
    	return !unicode.IsLower(rune)
    }
    
    // playExample synthesizes a new *ast.File based on the provided
    // file with the provided function body as the body of main.
    func playExample(file *ast.File, f *ast.FuncDecl) *ast.File {
    	body := f.Body
    
    	if !strings.HasSuffix(file.Name.Name, "_test") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. src/net/lookup.go

    // results which have had the malformed records filtered out.
    var errMalformedDNSRecordsDetail = "DNS response contained records which contain invalid names"
    
    // dial makes a new connection to the provided server (which must be
    // an IP address) with the provided network type, using either r.Dial
    // (if both r and r.Dial are non-nil) or else Dialer.DialContext.
    func (r *Resolver) dial(ctx context.Context, network, server string) (Conn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. src/math/rand/rand.go

    }
    
    // New returns a new [Rand] that uses random values from src
    // to generate other random values.
    func New(src Source) *Rand {
    	s64, _ := src.(Source64)
    	return &Rand{src: src, s64: s64}
    }
    
    // Seed uses the provided seed value to initialize the generator to a deterministic state.
    // Seed should not be called concurrently with any other [Rand] method.
    func (r *Rand) Seed(seed int64) {
    	if lk, ok := r.src.(*lockedSource); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top