Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for readWrite (0.18 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    	hijacked bool
    }
    
    // Hijack returns a delegate "net.Conn".
    // An error is returned if Write(), WriteHeader(), or Hijack() was previously called.
    // The returned bufio.ReadWriter is always nil.
    func (w *tunnelingResponseWriter) Hijack() (net.Conn, *bufio.ReadWriter, error) {
    	w.mu.Lock()
    	defer w.mu.Unlock()
    	if w.written {
    		klog.Errorf("Hijack called after write")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/gcimporter_test.go

    	{"encoding.BinaryMarshaler", "type BinaryMarshaler interface{MarshalBinary() (data []byte, err error)}"},
    	{"io.Reader", "type Reader interface{Read(p []byte) (n int, err error)}"},
    	{"io.ReadWriter", "type ReadWriter interface{Reader; Writer}"},
    	{"go/ast.Node", "type Node interface{End() go/token.Pos; Pos() go/token.Pos}"},
    	{"go/types.Type", "type Type interface{String() string; Underlying() Type}"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

      // variables.  In the future we may consider doing some form of
      // inter-procedural analysis.
      if (MayCallFunction(n, flib_def)) {
        *out_resource_op_kind = XlaResourceOpKind::kReadWrite;
      } else {
        *out_resource_op_kind = std::nullopt;
      }
    
      return absl::OkStatus();
    }
    
    // Returns true if a control or data dependence from a TensorFlow operation of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. src/io/io.go

    // is implementation-dependent.
    type Seeker interface {
    	Seek(offset int64, whence int) (int64, error)
    }
    
    // ReadWriter is the interface that groups the basic Read and Write methods.
    type ReadWriter interface {
    	Reader
    	Writer
    }
    
    // ReadCloser is the interface that groups the basic Read and Close methods.
    type ReadCloser interface {
    	Reader
    	Closer
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. src/internal/reflectlite/value.go

    		fl |= flag(dst.Kind())
    		return Value{dst, v.ptr, fl}
    
    	case implements(dst, v.typ()):
    		if target == nil {
    			target = unsafe_New(dst)
    		}
    		if v.Kind() == abi.Interface && v.IsNil() {
    			// A nil ReadWriter passed to nil Reader is OK,
    			// but using ifaceE2I below will panic.
    			// Avoid the panic by returning a nil dst (e.g., Reader) explicitly.
    			return Value{dst, nil, flag(abi.Interface)}
    		}
    		x := valueInterface(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/net/http/httputil/reverseproxy.go

    	go spc.copyFromBackend(errc)
    	<-errc
    }
    
    // switchProtocolCopier exists so goroutines proxying data back and
    // forth have nice names in stacks.
    type switchProtocolCopier struct {
    	user, backend io.ReadWriter
    }
    
    func (c switchProtocolCopier) copyFromBackend(errc chan<- error) {
    	_, err := io.Copy(c.user, c.backend)
    	errc <- err
    }
    
    func (c switchProtocolCopier) copyToBackend(errc chan<- error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/Files.java

       * long, long)} using the requested {@link MapMode}.
       *
       * <p>Files are mapped from offset 0 to {@code size}.
       *
       * <p>If the mode is {@link MapMode#READ_WRITE} and the file does not exist, it will be created
       * with the requested {@code size}. Thus this method is useful for creating memory mapped files
       * which do not yet exist.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/Files.java

       * long, long)} using the requested {@link MapMode}.
       *
       * <p>Files are mapped from offset 0 to {@code size}.
       *
       * <p>If the mode is {@link MapMode#READ_WRITE} and the file does not exist, it will be created
       * with the requested {@code size}. Thus this method is useful for creating memory mapped files
       * which do not yet exist.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. internal/grid/connection.go

    			Source:          conn,
    			State:           c.side,
    			CheckUTF8:       true,
    			SkipHeaderCheck: false,
    			OnIntermediate:  controlHandler,
    		}
    		readDataInto := func(dst []byte, rw io.ReadWriter, s ws.State, want ws.OpCode) ([]byte, error) {
    			dst = dst[:0]
    			for {
    				hdr, err := wsReader.NextFrame()
    				if err != nil {
    					return nil, err
    				}
    				if hdr.OpCode.IsControl() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top