Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 174 for readWrite (0.19 sec)

  1. src/go/internal/gccgoimporter/gccgoinstallation_test.go

    	for _, test := range [...]importerTest{
    		{pkgpath: "io", name: "Reader", want: "type Reader interface{Read(p []byte) (n int, err error)}"},
    		{pkgpath: "io", name: "ReadWriter", want: "type ReadWriter interface{Reader; Writer}"},
    		{pkgpath: "math", name: "Pi", want: "const Pi untyped float"},
    		{pkgpath: "math", name: "Sin", want: "func Sin(x float64) float64"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 21 02:25:41 UTC 2021
    - 4K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/readWriteAccess/unary.txt

    expression: property
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 08 22:12:25 UTC 2024
    - 45 bytes
    - Viewed (0)
  3. src/net/smtp/smtp_test.go

    func TestClientAuthTrimSpace(t *testing.T) {
    	server := "220 hello world\r\n" +
    		"200 some more"
    	var wrote strings.Builder
    	var fake faker
    	fake.ReadWriter = struct {
    		io.Reader
    		io.Writer
    	}{
    		strings.NewReader(server),
    		&wrote,
    	}
    	c, err := NewClient(fake, "fake.host")
    	if err != nil {
    		t.Fatalf("NewClient: %v", err)
    	}
    	c.tls = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KotlinFirReferenceContributor.kt

                        ReferenceAccess.WRITE -> arrayOf(KaFirSimpleNameReference(nameReferenceExpression, isRead = false))
                        ReferenceAccess.READ_WRITE -> arrayOf(
                            KaFirSimpleNameReference(nameReferenceExpression, isRead = true),
                            KaFirSimpleNameReference(nameReferenceExpression, isRead = false),
                        )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/net/http/responsecontroller.go

    // will call them as appropriate:
    //
    //	Flush()
    //	FlushError() error // alternative Flush returning an error
    //	Hijack() (net.Conn, *bufio.ReadWriter, error)
    //	SetReadDeadline(deadline time.Time) error
    //	SetWriteDeadline(deadline time.Time) error
    //	EnableFullDuplex() error
    //
    // If the ResponseWriter does not support a method, ResponseController returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. test/fixedbugs/issue15528.go

    	s string
    }{
    	{nil, "<nil> <nil>"},
    	{1, "int 1"},
    	{int(1), "int 1"},
    	{Int(int(2)), "main.Int Int=2"},
    	{int(Int(3)), "int 3"},
    	{[1]int{2}, "[1]int [2]"},
    	{io.Reader(io.ReadWriter(io.ReadWriteSeeker(nil))), "<nil> <nil>"},
    	{io.Reader(io.ReadWriter(io.ReadWriteSeeker(&RWS{}))), "*main.RWS rws"},
    	{makeRWS(), "*main.RWS rws"},
    	{map[string]string{"here": "there"}, "map[string]string map[here:there]"},
    	{chan bool(nil), "chan bool <nil>"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 12 14:31:26 UTC 2016
    - 3.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/fake.go

    type FakeResponseWriterFlusherCloseNotifierHijacker struct {
    	*FakeResponseWriterFlusherCloseNotifier
    }
    
    func (fw *FakeResponseWriterFlusherCloseNotifierHijacker) Hijack() (net.Conn, *bufio.ReadWriter, error) {
    	return nil, nil, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 01 19:58:11 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. pkg/kube/kclient/clienttest/test_helpers.go

    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/sets"
    )
    
    type TestClient[T controllers.Object] struct {
    	c kclient.ReadWriter[T]
    	t test.Failer
    	TestWriter[T]
    }
    
    type TestWriter[T controllers.Object] struct {
    	c kclient.Writer[T]
    	t test.Failer
    }
    
    func (t TestClient[T]) Get(name, namespace string) T {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/go/internal/srcimporter/srcimporter_test.go

    	name string
    	want string
    }{
    	{"flag.Bool", "func Bool(name string, value bool, usage string) *bool"},
    	{"io.Reader", "type Reader interface{Read(p []byte) (n int, err error)}"},
    	{"io.ReadWriter", "type ReadWriter interface{Reader; Writer}"}, // go/types.gcCompatibilityMode is off => interface not flattened
    	{"math.Pi", "const Pi untyped float"},
    	{"math.Sin", "func Sin(x float64) float64"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleInContainer.groovy

            this
        }
    
        GradleInContainer bindWritable(File local, String containerPath) {
            container.addFileSystemBind(local.absolutePath, containerPath, BindMode.READ_WRITE, SelinuxContext.NONE)
            this
        }
    
        GradleInContainer withExecuter(@DelegatesTo(value = GradleExecuter, strategy = Closure.DELEGATE_FIRST) Closure<?> action) {
            action.delegate = executer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top