Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for msanread (0.16 sec)

  1. src/crypto/tls/conn.go

    	// There might be extra input waiting on the wire. Make a best effort
    	// attempt to fetch it so that it can be used in (*Conn).Read to
    	// "predict" closeNotify alerts.
    	c.rawInput.Grow(needs + bytes.MinRead)
    	_, err := c.rawInput.ReadFrom(&atLeastReader{r, int64(needs)})
    	return err
    }
    
    // sendAlertLocked sends a TLS alert message.
    func (c *Conn) sendAlertLocked(err alert) error {
    	if c.quic != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                }
                return new SmbWatchHandleImpl(openUnshared(O_RDONLY, READ_CONTROL | GENERIC_READ, DEFAULT_SHARING, 0, 1), filter, recursive);
            }
        }
    
    
        @Override
        public boolean canRead () throws SmbException {
            if ( getType() == TYPE_NAMED_PIPE ) { // try opening the pipe for reading?
                return true;
            }
            return exists(); // try opening and catch sharing violation?
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * exists, this method simply calls the <code>exists</code> method.
     *
     * @return <code>true</code> if the file is read-only
     */
    
        public boolean canRead() throws SmbException {
            if( getType() == TYPE_NAMED_PIPE ) { // try opening the pipe for reading?
                return true;
            }
            return exists(); // try opening and catch sharing violation?
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"IndexRune", Func, 0},
    		{"Join", Func, 0},
    		{"LastIndex", Func, 0},
    		{"LastIndexAny", Func, 0},
    		{"LastIndexByte", Func, 5},
    		{"LastIndexFunc", Func, 0},
    		{"Map", Func, 0},
    		{"MinRead", Const, 0},
    		{"NewBuffer", Func, 0},
    		{"NewBufferString", Func, 0},
    		{"NewReader", Func, 0},
    		{"Reader", Type, 0},
    		{"Repeat", Func, 0},
    		{"Replace", Func, 0},
    		{"ReplaceAll", Func, 12},
    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. api/go1.1.txt

    pkg bufio, type Scanner struct
    pkg bufio, type SplitFunc func([]uint8, bool) (int, []uint8, error)
    pkg bufio, var ErrAdvanceTooFar error
    pkg bufio, var ErrNegativeAdvance error
    pkg bufio, var ErrTooLong error
    pkg bytes, const MinRead = 512
    pkg bytes, func TrimPrefix([]uint8, []uint8) []uint8
    pkg bytes, func TrimSuffix([]uint8, []uint8) []uint8
    pkg bytes, method (*Buffer) Grow(int)
    pkg bytes, method (*Reader) WriteTo(io.Writer) (int64, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top