Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Team (0.15 sec)

  1. src/internal/testenv/testenv.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package testenv provides information about what functionality
    // is available in different testing environments run by the Go team.
    //
    // It is an internal package because these details are specific
    // to the Go team's test setup (on build.golang.org) and not
    // fundamental to tests in general.
    package testenv
    
    import (
    	"bytes"
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/net/http/client.go

    	d, ok := ctx.Deadline()
    	if !ok {
    		return true
    	}
    	return t.Before(d)
    }
    
    // knownRoundTripperImpl reports whether rt is a RoundTripper that's
    // maintained by the Go team and known to implement the latest
    // optional semantics (notably contexts). The Request is used
    // to check whether this particular request is using an alternate protocol,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top