Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for asanwrite (0.19 sec)

  1. src/runtime/proc.go

    		}
    		ts.g.set(mp.g0)
    		ts.tls = (*uint64)(unsafe.Pointer(&mp.tls[0]))
    		ts.fn = unsafe.Pointer(abi.FuncPCABI0(mstart))
    		if msanenabled {
    			msanwrite(unsafe.Pointer(&ts), unsafe.Sizeof(ts))
    		}
    		if asanenabled {
    			asanwrite(unsafe.Pointer(&ts), unsafe.Sizeof(ts))
    		}
    		execLock.rlock() // Prevent process clone.
    		asmcgocall(_cgo_thread_start, unsafe.Pointer(&ts))
    		execLock.runlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * will be read-only.
     *
     * @return  <code>true</code> if the resource exists is not marked
     *          read-only
     */
    
        public boolean canWrite() throws SmbException {
            if( getType() == TYPE_NAMED_PIPE ) { // try opening the pipe for writing?
                return true;
            }
            return exists() && ( attributes & ATTR_READONLY ) == 0;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top