Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 174 for readWrite (0.2 sec)

  1. 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)
  2. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

       *
       * <pre>
       * com....PotentialDeadlockException: Potential Deadlock from LockC -&gt; ReadWriteA
       *   at ...
       *   at ...
       * Caused by: com...ExampleStackTrace: LockB -&gt; LockC
       *   at ...
       *   at ...
       * Caused by: com...ExampleStackTrace: ReadWriteA -&gt; LockB
       *   at ...
       *   at ...
       * </pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  3. api/go1.18.txt

    pkg bufio, method (*Writer) AvailableBuffer() []uint8
    pkg bufio, method (ReadWriter) AvailableBuffer() []uint8
    pkg bytes, func Cut([]uint8, []uint8) ([]uint8, []uint8, bool)
    pkg bytes, func Title //deprecated
    pkg crypto/tls, method (*Conn) NetConn() net.Conn
    pkg crypto/tls, type Config struct, PreferServerCipherSuites //deprecated
    pkg crypto/x509, method (*CertPool) Subjects //deprecated
    pkg debug/buildinfo, func Read(io.ReaderAt) (*debug.BuildInfo, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(ReadWriter).ReadRune", Method, 0},
    		{"(ReadWriter).ReadSlice", Method, 0},
    		{"(ReadWriter).ReadString", Method, 0},
    		{"(ReadWriter).UnreadByte", Method, 0},
    		{"(ReadWriter).UnreadRune", Method, 0},
    		{"(ReadWriter).Write", Method, 0},
    		{"(ReadWriter).WriteByte", Method, 0},
    		{"(ReadWriter).WriteRune", Method, 0},
    		{"(ReadWriter).WriteString", Method, 0},
    		{"(ReadWriter).WriteTo", Method, 1},
    		{"ErrAdvanceTooFar", Var, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

       *
       * <pre>
       * com....PotentialDeadlockException: Potential Deadlock from LockC -&gt; ReadWriteA
       *   at ...
       *   at ...
       * Caused by: com...ExampleStackTrace: LockB -&gt; LockC
       *   at ...
       *   at ...
       * Caused by: com...ExampleStackTrace: ReadWriteA -&gt; LockB
       *   at ...
       *   at ...
       * </pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K 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. staging/src/k8s.io/api/core/v1/types.go

    const (
    	AzureDataDiskCachingNone      AzureDataDiskCachingMode = "None"
    	AzureDataDiskCachingReadOnly  AzureDataDiskCachingMode = "ReadOnly"
    	AzureDataDiskCachingReadWrite AzureDataDiskCachingMode = "ReadWrite"
    
    	AzureSharedBlobDisk    AzureDataDiskKind = "Shared"
    	AzureDedicatedBlobDisk AzureDataDiskKind = "Dedicated"
    	AzureManagedDisk       AzureDataDiskKind = "Managed"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. src/io/io_test.go

    }
    
    func TestReadAtLeastWithDataAndError(t *testing.T) {
    	var rb dataAndErrorBuffer
    	rb.err = fmt.Errorf("fake error")
    	testReadAtLeast(t, &rb)
    }
    
    func testReadAtLeast(t *testing.T, rb ReadWriter) {
    	rb.Write([]byte("0123"))
    	buf := make([]byte, 2)
    	n, err := ReadAtLeast(rb, buf, 2)
    	if err != nil {
    		t.Error(err)
    	}
    	if n != 2 {
    		t.Errorf("expected to have read 2 bytes, got %v", n)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top