Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 113 for timezone (0.21 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/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)
  3. 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)
  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. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

          .writeByte(this[size - 1].toInt() xor 1)
          .readByteString()
      }
    
      private fun date(s: String): Date {
        return SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ").run {
          timeZone = TimeZone.getTimeZone("GMT")
          parse(s)
        }
      }
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 43.9K bytes
    - Viewed (0)
  6. common/scripts/run.sh

        --sig-proxy=true \
        ${DOCKER_SOCKET_MOUNT:--v /var/run/docker.sock:/var/run/docker.sock} \
        $CONTAINER_OPTIONS \
        --env-file <(env | grep -v ${ENV_BLOCKLIST}) \
        -e IN_BUILD_CONTAINER=1 \
        -e TZ="${TIMEZONE:-$TZ}" \
        --mount "type=bind,source=${MOUNT_SOURCE},destination=/work" \
        --mount "type=volume,source=go,destination=/go" \
        --mount "type=volume,source=gocache,destination=/gocache" \
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Aug 11 02:34:11 GMT 2023
    - 2.2K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/Constants.java

        public static final Integer DEFAULT_DAY_FOR_CLEANUP = 3;
    
        public static final String FESS_CONF_PATH = "fess.conf.path";
    
        public static final TimeZone TIMEZONE_UTC = TimeZone.getTimeZone("UTC");
    
        public static final String LDAP_BASE_DN = "ldap.base.dn";
    
        public static final String LDAP_SECURITY_PRINCIPAL = "ldap.security.principal";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  8. 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)
  9. src/archive/zip/writer.go

    		// do not convert to UTC, because we assume the user intends to encode
    		// the date using the specified timezone. A user may want this control
    		// because many legacy ZIP readers interpret the timestamp according
    		// to the local timezone.
    		//
    		// The timezone is only non-UTC if a user directly sets the Modified
    		// field directly themselves. All other approaches sets UTC.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  10. tests/tests_test.go

    )
    
    var DB *gorm.DB
    var (
    	mysqlDSN     = "gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True&loc=Local"
    	postgresDSN  = "user=gorm password=gorm dbname=gorm host=localhost port=9920 sslmode=disable TimeZone=Asia/Shanghai"
    	sqlserverDSN = "sqlserver://gorm:LoremIpsum86@localhost:9930?database=gorm"
    	tidbDSN      = "root:@tcp(localhost:9940)/test?charset=utf8&parseTime=True&loc=Local"
    )
    
    func init() {
    	var err error
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Fri Dec 15 08:36:08 GMT 2023
    - 3.3K bytes
    - Viewed (1)
Back to top