Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 6,104 for ulong (0.16 sec)

  1. src/main/java/jcifs/internal/fscc/FileEndOfFileInformation.java

     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     * Lesser General Public License for more details.
     * 
     * You should have received a copy of the GNU Lesser General Public
     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.fscc;
    
    
    import jcifs.Encodable;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/DfsReferral.java

     * You should have received a copy of the GNU Lesser General Public
     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    import java.util.Map;
    
    public class DfsReferral extends SmbException {
    
        public int pathConsumed;
        public long ttl;
        public String server;   // Server
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbComClose.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    import java.util.Date;
    
    class SmbComClose extends ServerMessageBlock {
    
        private int fid;
        private long lastWriteTime;
    
        SmbComClose( int fid, long lastWriteTime ) {
            this.fid = fid;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  4. internal/config/config_test.go

    		},
    		// Keys and input order of k=v is same.
    		{
    			input: `connection_string="host=localhost port=2832" comment="really long comment"`,
    			keys:  []string{"connection_string", "comment"},
    			expectedFields: map[string]struct{}{
    				`connection_string="host=localhost port=2832"`: {},
    				`comment="really long comment"`:                {},
    			},
    		},
    		// Keys with spaces in between
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 18 22:55:17 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java

    
        /**
         * @return the lastWriteTime
         */
        @Override
        public final long getLastWriteTime () {
            return this.lastWriteTime;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbBasicFileInfo#getCreateTime()
         */
        @Override
        public long getCreateTime () {
            return 0;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

         */
        @Override
        public final long getLastAccessTime () {
            return this.lastAccessTime;
        }
    
    
        /**
         * @return the lastWriteTime
         */
        @Override
        public final long getLastWriteTime () {
            return this.lastWriteTime;
        }
    
    
        /**
         * @return the allocationSize
         */
        public final long getAllocationSize () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/SmbComWriteResponse.java

    
    /**
     * 
     */
    public class SmbComWriteResponse extends ServerMessageBlock {
    
        private long count;
    
    
        /**
         * 
         * @param config
         */
        public SmbComWriteResponse ( Configuration config ) {
            super(config);
        }
    
    
        /**
         * @return the count
         */
        public long getCount () {
            return this.count;
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2K bytes
    - Viewed (0)
  8. src/syscall/types_freebsd.go

    	u_char  ifi_spare_char2;
    	u_char  ifi_datalen;
    	u_long  ifi_mtu;
    	u_long  ifi_metric;
    	u_long  ifi_baudrate;
    	u_long  ifi_ipackets;
    	u_long  ifi_ierrors;
    	u_long  ifi_opackets;
    	u_long  ifi_oerrors;
    	u_long  ifi_collisions;
    	u_long  ifi_ibytes;
    	u_long  ifi_obytes;
    	u_long  ifi_imcasts;
    	u_long  ifi_omcasts;
    	u_long  ifi_iqdrops;
    	u_long  ifi_noproto;
    	u_long  ifi_hwassist;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComSetInformation.java

    public class SmbComSetInformation extends ServerMessageBlock {
    
        private int fileAttributes;
        private long lastWriteTime;
    
    
        /**
         * 
         * @param config
         * @param filename
         * @param attrs
         * @param mtime
         */
        public SmbComSetInformation ( Configuration config, String filename, int attrs, long mtime ) {
            super(config, SMB_COM_SET_INFORMATION, filename);
            this.fileAttributes = attrs;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComSeekResponse.java

     * @author mbechler
     *
     */
    public class SmbComSeekResponse extends ServerMessageBlock {
    
        private long offset;
    
    
        /**
         * @param config
         */
        public SmbComSeekResponse ( Configuration config ) {
            super(config);
        }
    
    
        /**
         * @return the offset
         */
        public long getOffset () {
            return this.offset;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
Back to top