Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for toServer (1.11 sec)

  1. src/net/smtp/auth.go

    	// the authentication attempt and closes the connection.
    	Start(server *ServerInfo) (proto string, toServer []byte, err error)
    
    	// Next continues the authentication. The server has just sent
    	// the fromServer data. If more is true, the server expects a
    	// response, which Next should return as toServer; otherwise
    	// Next should return toServer == nil.
    	// If Next returns a non-nil error, the SMTP client aborts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/net/smtp/smtp_test.go

    // zero bytes for "toServer" so we can test that we don't send spaces at
    // the end of the line. See TestClientAuthTrimSpace.
    type toServerEmptyAuth struct{}
    
    func (toServerEmptyAuth) Start(server *ServerInfo) (proto string, toServer []byte, err error) {
    	return "FOOAUTH", nil, nil
    }
    
    func (toServerEmptyAuth) Next(fromServer []byte, more bool) (toServer []byte, err error) {
    	panic("unexpected call")
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_proxy_errors.txt

    # (For now, exactly eight.)
    ! go list -m vcs-test.golang.org/auth/ormanylines@latest
    stderr '\tserver response:\n(.|\n)*\tline 8\n\t\[Truncated: too many lines.\]$'
    
    # Server responses should be truncated to some reasonable number of characters.
    ! go list -m vcs-test.golang.org/auth/oronelongline@latest
    ! stderr 'blah{40}'
    stderr '\tserver response: \[Truncated: too long\.\]$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 698 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_auth.txt

    env GOSUMDB=off
    env GOVCS='*:off'
    
    # Without credentials, downloading a module from a path that requires HTTPS
    # basic auth should fail.
    env NETRC=$WORK/empty
    ! go mod tidy
    stderr '^\tserver response: ACCESS DENIED, buddy$'
    stderr '^\tserver response: File\? What file\?$'
    
    # With credentials from a netrc file, it should succeed.
    env NETRC=$WORK/netrc
    go mod tidy
    go list all
    stdout vcs-test.golang.org/auth/or401
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 763 bytes
    - Viewed (0)
  5. pkg/test/framework/resource/version.go

    // and 1 if "v" is greater than "other".
    func (v IstioVersion) Compare(other IstioVersion) int {
    	ver := model.ParseIstioVersion(string(v))
    	otherVer := model.ParseIstioVersion(string(other))
    	return ver.Compare(otherVer)
    }
    
    // Minimum returns the minimum from a set of IstioVersions
    // returns empty value if no versions.
    func (v IstioVersions) Minimum() IstioVersion {
    	if len(v) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_nopkgs.txt

    ! go get example.net/emptysubdir/subdir/...
    ! stderr 'matched no packages'
    stderr '^go: example\.net/emptysubdir/subdir/\.\.\.: module example\.net/emptysubdir/subdir: reading http://.*: 404 Not Found\n\tserver response: 404 page not found\n\z'
    
    # It doesn't make sense to 'go get' a path in the standard library,
    # since the standard library necessarily can't have unresolved imports.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_run_pkg_version.txt

    cd m
    cp go.mod go.mod.orig
    ! go list -m all
    stderr '^go: example.com/cmd@v1.1.0-doesnotexist: reading http.*/mod/example\.com/cmd/@v/v1.1.0-doesnotexist.info: 404 Not Found\n\tserver response: 404 page not found$'
    stderr '^go: example.com/cmd@v1.1.0-doesnotexist: missing go.sum entry for go.mod file; to add it:\n\tgo mod download example.com/cmd$'
    go run example.com/cmd/a@v1.0.0
    stdout '^a@v1.0.0$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/web/api.go

    )
    
    func (e *HTTPError) Error() string {
    	if e.Detail != "" {
    		detailSep := " "
    		if strings.ContainsRune(e.Detail, '\n') {
    			detailSep = "\n\t"
    		}
    		return fmt.Sprintf("reading %s: %v\n\tserver response:%s%s", e.URL, e.Status, detailSep, e.Detail)
    	}
    
    	if eErr := e.Err; eErr != nil {
    		if pErr, ok := e.Err.(*fs.PathError); ok {
    			if u, err := url.Parse(e.URL); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    cd m
    cp go.mod go.mod.orig
    ! go list -m all
    stderr '^go: example.com/cmd@v1.1.0-doesnotexist: reading http.*/mod/example.com/cmd/@v/v1.1.0-doesnotexist.info: 404 Not Found\n\tserver response: 404 page not found$'
    stderr '^go: example.com/cmd@v1.1.0-doesnotexist: missing go.sum entry for go.mod file; to add it:\n\tgo mod download example.com/cmd$'
    go install example.com/cmd/a@latest
    cmp go.mod go.mod.orig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==",
          "dev": true,
          "bin": {
            "tsc": "bin/tsc",
            "tsserver": "bin/tsserver"
          },
          "engines": {
            "node": ">=12.20"
          }
        },
        "node_modules/unbox-primitive": {
          "version": "1.0.2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
Back to top