Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for aspx (0.17 sec)

  1. internal/lock/lock_windows.go

    	procLockFileEx = modkernel32.NewProc("LockFileEx")
    )
    
    const (
    	// https://msdn.microsoft.com/en-us/library/windows/desktop/aa365203(v=vs.85).aspx
    	lockFileExclusiveLock   = 2
    	lockFileFailImmediately = 1
    
    	// see https://msdn.microsoft.com/en-us/library/windows/desktop/ms681382(v=vs.85).aspx
    	errLockViolation syscall.Errno = 0x21
    )
    
    // lockedOpenFile is an internal function.
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Oct 18 18:08:15 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  2. internal/disk/stat_windows.go

    	"unsafe"
    
    	"golang.org/x/sys/windows"
    )
    
    var (
    	kernel32 = windows.NewLazySystemDLL("kernel32.dll")
    
    	// GetDiskFreeSpaceEx - https://msdn.microsoft.com/en-us/library/windows/desktop/aa364937(v=vs.85).aspx
    	// Retrieves information about the amount of space that is available on a disk volume,
    	// which is the total amount of space, the total amount of free space, and the total
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Feb 26 19:34:50 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/ioctl/SrvPipePeekResponse.java

    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * @author svella
     *
     */
    public class SrvPipePeekResponse implements Decodable {
    
        // see https://msdn.microsoft.com/en-us/library/dd414577.aspx
    
        private int namedPipeState;
        private int readDataAvailable;
        private int numberOfMessages;
        private int messageLength;
        private byte[] data;
    
    
        /**
         * @return the chunkBytesWritten
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 2.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         * @return default credentials, password
         */
        String getDefaultPassword ();
    
    
        /**
         * Lanman compatibility level
         * 
         * {@href https://technet.microsoft.com/en-us/library/cc960646.aspx}
         * 
         * 
         * <table>
         * <tr>
         * <td>0 or 1</td>
         * <td>LM and NTLM</td>
         * </tr>
         * <tr>
         * <td>2</td>
         * <td>NTLM only</td>
         * </tr>
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/MediaType.java

       * name extensions for Windows Media metafiles</a>.
       *
       * @since 20.0
       */
      public static final MediaType WMA_AUDIO = createConstant(AUDIO_TYPE, "x-ms-wma");
    
      /**
       * Windows Media metafiles. For more information, see <a
       * href="https://msdn.microsoft.com/en-us/library/windows/desktop/dd562994(v=vs.85).aspx">file
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

        reqx.setParam( file.fid, fp, len, b, off, w );
        reqx.writeMode = 0x8;
    } else {
        reqx.writeMode = 0;
    }
                    file.send( reqx, rspx );
                    fp += rspx.count;
                    len -= rspx.count;
                    off += rspx.count;
                } else {
                    req.setParam( file.fid, fp, len - w, b, off, w );
                    fp += rsp.count;
                    len -= rsp.count;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 9.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFileOutputStream.java

                        }
                        else {
                            this.reqx.setWriteMode(0);
                        }
    
                        th.send(this.reqx, this.rspx, RequestParam.NO_RETRY);
                        long cnt = this.rspx.getCount();
                        this.fp += cnt;
                        len -= cnt;
                        off += cnt;
                    }
                    else {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Nov 13 15:14:04 GMT 2021
    - 11.9K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Confirmed by registry <******@****.***> 2013-11-28
    je
    co.je
    net.je
    org.je
    
    // jm : http://www.com.jm/register.html
    *.jm
    
    // jo : http://www.dns.jo/Registration_policy.aspx
    jo
    com.jo
    org.jo
    net.jo
    edu.jo
    sch.jo
    gov.jo
    mil.jo
    name.jo
    
    // jobs : https://en.wikipedia.org/wiki/.jobs
    jobs
    
    // jp : https://en.wikipedia.org/wiki/.jp
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  9. src/main/java/jcifs/smb1/util/mime.map

    text/x-sgml                    sgml sgm         # SGML Document
    video/mpeg                     mpeg mpg mpe     # MPEG Movie File
    video/quicktime                qt mov           # Quicktime Movie File
    video/x-ms-asf                 asf asx          # Windows Media  File
    video/x-msvideo                avi              # AVI Movie File
    Plain Text
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.9K bytes
    - Viewed (0)
Back to top