Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 174 for readWrite (0.41 sec)

  1. 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)
  2. src/net/http/server.go

    	// After a call to Hijack, the original Request.Body must not
    	// be used. The original Request's Context remains valid and
    	// is not canceled until the Request's ServeHTTP method
    	// returns.
    	Hijack() (net.Conn, *bufio.ReadWriter, error)
    }
    
    // The CloseNotifier interface is implemented by ResponseWriters which
    // allow detecting when the underlying connection has gone away.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. 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)
  4. api/go1.5.txt

    pkg archive/zip, method (*Writer) SetOffset(int64)
    pkg bufio, method (*Reader) Discard(int) (int, error)
    pkg bufio, method (ReadWriter) Discard(int) (int, error)
    pkg bytes, func LastIndexByte([]uint8, uint8) int
    pkg bytes, method (*Buffer) Cap() int
    pkg bytes, method (*Reader) Size() int64
    pkg crypto, const SHA512_224 = 14
    pkg crypto, const SHA512_224 Hash
    pkg crypto, const SHA512_256 = 15
    pkg crypto, const SHA512_256 Hash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "cachingMode is the Host Caching mode: None, Read Only, Read Write.\n\nPossible enum values:\n - `\"None\"`\n - `\"ReadOnly\"`\n - `\"ReadWrite\"`",
    							Type:        []string{"string"},
    							Format:      "",
    							Enum:        []interface{}{"None", "ReadOnly", "ReadWrite"},
    						},
    					},
    					"fsType": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. api/go1.txt

    pkg bufio, method (ReadWriter) Available() int
    pkg bufio, method (ReadWriter) Flush() error
    pkg bufio, method (ReadWriter) Peek(int) ([]uint8, error)
    pkg bufio, method (ReadWriter) Read([]uint8) (int, error)
    pkg bufio, method (ReadWriter) ReadByte() (uint8, error)
    pkg bufio, method (ReadWriter) ReadBytes(uint8) ([]uint8, error)
    pkg bufio, method (ReadWriter) ReadLine() ([]uint8, bool, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	}
    
    	for i, v := range ret {
    		if v.CanAddr() {
    			t.Errorf("result %d is addressable", i)
    		}
    	}
    }
    
    func TestCallConvert(t *testing.T) {
    	v := ValueOf(new(io.ReadWriter)).Elem()
    	f := ValueOf(func(r io.Reader) io.Reader { return r })
    	out := f.Call([]Value{v})
    	if len(out) != 1 || out[0].Type() != TypeOf(new(io.Reader)).Elem() || !out[0].IsNil() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. src/reflect/value.go

    		fl := v.flag&(flagAddr|flagIndir) | v.flag.ro()
    		fl |= flag(dst.Kind())
    		return Value{dst, v.ptr, fl}
    
    	case implements(dst, v.typ()):
    		if v.Kind() == 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(Interface)}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		w.WriteHeader(StatusSwitchingProtocols)
    		c, buf, err := w.(Hijacker).Hijack()
    		if err != nil {
    			return
    		}
    		defer c.Close()
    
    		// Copy from the *bufio.ReadWriter, which may contain buffered data.
    		// Copy to the net.Conn, to avoid buffering the output.
    		io.Copy(c, buf)
    	}), func(ts *httptest.Server) {
    		ts.Config.SetKeepAlivesEnabled(false)
    	}).ts
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    	Close() error
    }
    
    type Writer interface {
    	Write(p []byte) (n int, err error)
    	Close() error
    }
    
    // ReadWriter's methods are Read, Write, and Close.
    type ReadWriter interface {
    	Reader  // includes methods of Reader in ReadWriter's method set
    	Writer  // includes methods of Writer in ReadWriter's method set
    }
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top