Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for msanread (0.23 sec)

  1. src/runtime/mgcsweep.go

    			return false
    		}
    
    		// It's only at this point that the sweeper doesn't actually need to look
    		// at this arena anymore, so subtract from pagesInUse now.
    		mheap_.pagesInUse.Add(-s.npages)
    		s.state.set(mSpanDead)
    
    		// The arena is ready to be recycled. Remove it from the quarantine list
    		// and place it on the ready list. Don't add it back to any sweep lists.
    		systemstack(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. api/go1.txt

    pkg bufio, type Writer struct
    pkg bufio, var ErrBufferFull error
    pkg bufio, var ErrInvalidUnreadByte error
    pkg bufio, var ErrInvalidUnreadRune error
    pkg bufio, var ErrNegativeCount error
    pkg bytes, const MinRead ideal-int
    pkg bytes, func Compare([]uint8, []uint8) int
    pkg bytes, func Contains([]uint8, []uint8) bool
    pkg bytes, func Count([]uint8, []uint8) int
    pkg bytes, func Equal([]uint8, []uint8) bool
    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. 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