Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for timezone (0.2 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/srvsvc.idl

    			[out,switch_is(level)] ServerInfo *info);
    
    	typedef struct {
    		uint32_t elapsedt;  
    		uint32_t msecs;  
    		uint32_t hours;  
    		uint32_t mins;  
    		uint32_t secs;  
    		uint32_t hunds;
    		uint32_t timezone;  
    		uint32_t tinterval;  
    		uint32_t day;  
    		uint32_t month;  
    		uint32_t year;  
    		uint32_t weekday;
    	} TimeOfDayInfo;
    
    	[op(0x1c)]
    	int RemoteTOD([in,string,unique] wchar_t *servername,
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

    import java.util.Arrays;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.StringTokenizer;
    import java.util.TimeZone;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSException;
    import jcifs.Configuration;
    import jcifs.DialectVersion;
    import jcifs.ResolverType;
    import jcifs.SmbConstants;
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  3. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int TID_OFFSET        = 24;
        static final int HEADER_LENGTH     = 32;
    
        static final long MILLISECONDS_BETWEEN_1970_AND_1601 = 11644473600000L;
        static final TimeZone TZ = TimeZone.getDefault();
    
        static final boolean USE_BATCHING = Config.getBoolean( "jcifs.smb1.smb.client.useBatching", true );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl

    			[out,switch_is(level)] ServerInfo *info);
    
    	typedef struct {
    		uint32_t elapsedt;  
    		uint32_t msecs;  
    		uint32_t hours;  
    		uint32_t mins;  
    		uint32_t secs;  
    		uint32_t hunds;
    		uint32_t timezone;  
    		uint32_t tinterval;  
    		uint32_t day;  
    		uint32_t month;  
    		uint32_t year;  
    		uint32_t weekday;
    	} TimeOfDayInfo;
    
    	[op(0x1c)]
    	int RemoteTOD([in,string,unique] wchar_t *servername,
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

            public int elapsedt;
            public int msecs;
            public int hours;
            public int mins;
            public int secs;
            public int hunds;
            public int timezone;
            public int tinterval;
            public int day;
            public int month;
            public int year;
            public int weekday;
    
            public void encode(NdrBuffer _dst) throws NdrException {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 18.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/Configuration.java

         * Property <tt>jcifs.encoding</tt> (string, default <tt>Cp850</tt>)
         * 
         * @return OEM encoding to use
         */
        String getOemEncoding ();
    
    
        /**
         * @return local timezone
         */
        TimeZone getLocalTimezone ();
    
    
        /**
         * @return Process id to send, randomized if unset
         */
        int getPid ();
    
    
        /**
         * 
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbTreeHandle.java

         */
        @Override
        void close () throws CIFSException;
    
    
        /**
         * @return the tree is connected
         */
        boolean isConnected ();
    
    
        /**
         * @return server timezone offset
         * @throws CIFSException
         */
        long getServerTimeZoneOffset () throws CIFSException;
    
    
        /**
         * @return server reported domain name
         * @throws CIFSException
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

            public int elapsedt;
            public int msecs;
            public int hours;
            public int mins;
            public int secs;
            public int hunds;
            public int timezone;
            public int tinterval;
            public int day;
            public int month;
            public int year;
            public int weekday;
    
    
            @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 19.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/config/DelegatingConfiguration.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.config;
    
    
    import java.net.InetAddress;
    import java.security.SecureRandom;
    import java.util.List;
    import java.util.TimeZone;
    
    import jcifs.Configuration;
    import jcifs.DialectVersion;
    import jcifs.ResolverType;
    
    
    /**
     * @author mbechler
     *
     */
    public class DelegatingConfiguration implements Configuration {
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
Back to top