Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,104 for ulong (0.05 sec)

  1. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.0-long.txt

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    {"Version":"v1.0.0-long"}
    -- empty.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 124 bytes
    - Viewed (0)
  2. src/archive/tar/testdata/writer-big-long.tar

    Joe Tsai <******@****.***> 1503105518 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 22:38:45 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  3. src/archive/tar/testdata/gnu-long-nul.tar

    Joe Tsai <******@****.***> 1442533177 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 03:12:47 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  4. src/compress/flate/testdata/null-long-match.dyn.expect-noinput

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 206 bytes
    - Viewed (0)
  5. src/compress/flate/testdata/null-long-match.wb.expect-noinput

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 206 bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/FileEntry.java

        /**
         * 
         * @return the creation time
         */
        long createTime ();
    
    
        /**
         * 
         * @return the last modified time
         */
        long lastModified ();
    
    
        /**
         * 
         * @return the last access time
         */
        long lastAccess ();
    
    
        /**
         * 
         * @return the file size
         */
        long length ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  7. internal/lock/lock_windows_test.go

    		{`C:\`, `C:\`},
    		{`C:`, `C:`},
    		// The "long" substring is replaced by a looooooong
    		// string which triggers the rewriting. Except in the
    		// cases below where it doesn't.
    		{`C:\long\foo.txt`, `\\?\C:\long\foo.txt`},
    		{`C:/long/foo.txt`, `\\?\C:\long\foo.txt`},
    		{`C:\long\foo\\bar\.\baz\\`, `\\?\C:\long\foo\bar\baz`},
    		{`\\unc\path`, `\\unc\path`},
    		{`long.txt`, `long.txt`},
    		{`C:long.txt`, `C:long.txt`},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbComQueryInformationResponse.java

    class SmbComQueryInformationResponse extends ServerMessageBlock implements Info {
    
        private int fileAttributes = 0x0000;
        private long lastWriteTime = 0L;
        private long serverTimeZoneOffset;
        private int fileSize = 0;
    
        SmbComQueryInformationResponse( long serverTimeZoneOffset ) {
            this.serverTimeZoneOffset = serverTimeZoneOffset;
            command = SMB_COM_QUERY_INFORMATION;
        }
    
        public int getAttributes() {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/SmbBasicFileInfo.java

         * 
         * @return file create time
         */
        long getCreateTime ();
    
    
        /**
         * 
         * @return file last write time
         */
        long getLastWriteTime ();
    
    
        /**
         * 
         * @return file last access time
         */
        long getLastAccessTime ();
    
    
        /**
         * 
         * @return file size
         */
        long getSize ();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/ioctl/SrvCopychunk.java

    
    /**
     * @author mbechler
     *
     */
    public class SrvCopychunk implements Encodable {
    
        private long sourceOffset;
        private long targetOffset;
        private int length;
    
    
        /**
         * @param soff
         * @param toff
         * @param len
         */
        public SrvCopychunk ( long soff, long toff, int len ) {
            this.sourceOffset = soff;
            this.targetOffset = toff;
            this.length = len;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.9K bytes
    - Viewed (0)
Back to top