Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 152 for provider (0.12 sec)

  1. src/cmd/compile/internal/types2/check_test.go

    // TestManual is for manual testing of a package - either provided
    // as a list of filenames belonging to the package, or a directory
    // name containing the package files - after the test arguments
    // (and a separating "--"). For instance, to test the package made
    // of the files foo.go and bar.go, use:
    //
    //	go test -run Manual -- foo.go bar.go
    //
    // If no source arguments are provided, the file testdata/manual.go
    // is used instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/flag/flag.go

    // It then gets wrapped through failf to provide more information.
    var errParse = errors.New("parse error")
    
    // errRange is returned by Set if a flag's value is out of range.
    // It then gets wrapped through failf to provide more information.
    var errRange = errors.New("value out of range")
    
    func numError(err error) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  3. src/strings/strings.go

    	// been handled above.
    	return s[start:stop]
    }
    
    // TrimPrefix returns s without the provided leading prefix string.
    // If s doesn't start with prefix, s is returned unchanged.
    func TrimPrefix(s, prefix string) string {
    	return stringslite.TrimPrefix(s, prefix)
    }
    
    // TrimSuffix returns s without the provided trailing suffix string.
    // If s doesn't end with suffix, s is returned unchanged.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. src/net/url/url.go

    	RawFragment string    // encoded fragment hint (see EscapedFragment method)
    }
    
    // User returns a [Userinfo] containing the provided username
    // and no password set.
    func User(username string) *Userinfo {
    	return &Userinfo{username, "", false}
    }
    
    // UserPassword returns a [Userinfo] containing the provided username
    // and password.
    //
    // This functionality should only be used with legacy web sites.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  5. src/go/types/check_test.go

    // TestManual is for manual testing of a package - either provided
    // as a list of filenames belonging to the package, or a directory
    // name containing the package files - after the test arguments
    // (and a separating "--"). For instance, to test the package made
    // of the files foo.go and bar.go, use:
    //
    //	go test -run Manual -- foo.go bar.go
    //
    // If no source arguments are provided, the file testdata/manual.go
    // is used instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/log/slog/value.go

    func (k Kind) String() string {
    	if k >= 0 && int(k) < len(kindStrings) {
    		return kindStrings[k]
    	}
    	return "<unknown slog.Kind>"
    }
    
    // Unexported version of Kind, just so we can store Kinds in Values.
    // (No user-provided value has this type.)
    type kind Kind
    
    // Kind returns v's Kind.
    func (v Value) Kind() Kind {
    	switch x := v.any.(type) {
    	case Kind:
    		return x
    	case stringptr:
    		return KindString
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/resolver.go

    				if name == "init" {
    					check.error(s, InvalidInitDecl, "cannot import package as init - init must be a func")
    					continue
    				}
    
    				// 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: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top