Search Options

Results per page
Sort
Preferred Languages
Advance

Results 381 - 390 of 3,433 for qint (0.03 sec)

  1. src/main/java/jcifs/smb1/netbios/SessionServicePacket.java

        // session service packet types 
        static final int SESSION_MESSAGE = 0x00; 
        static final int SESSION_REQUEST = 0x81; 
        public static final int POSITIVE_SESSION_RESPONSE = 0x82; 
        public static final int NEGATIVE_SESSION_RESPONSE = 0x83; 
        static final int SESSION_RETARGET_RESPONSE = 0x84; 
        static final int SESSION_KEEP_ALIVE = 0x85; 
    
        static final int MAX_MESSAGE_SIZE = 0x0001FFFF;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

        protected long maxAccessCount = Long.MAX_VALUE;
    
        protected long crawlingExecutionInterval = Constants.DEFAULT_CRAWLING_EXECUTION_INTERVAL;
    
        protected int indexUpdaterPriority = Thread.MAX_PRIORITY;
    
        protected int crawlerPriority = Thread.NORM_PRIORITY;
    
        protected final List<Crawler> crawlerList = Collections.synchronizedList(new ArrayList<>());
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/UnsignedInts.java

       *
       * @param dividend the dividend (numerator)
       * @param divisor the divisor (denominator)
       * @throws ArithmeticException if divisor is 0
       */
      public static int remainder(int dividend, int divisor) {
        return (int) (toLong(dividend) % toLong(divisor));
      }
    
      /**
       * Returns the unsigned {@code int} value represented by the given string.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 21:17:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/UnsignedInts.java

       *
       * @param dividend the dividend (numerator)
       * @param divisor the divisor (denominator)
       * @throws ArithmeticException if divisor is 0
       */
      public static int remainder(int dividend, int divisor) {
        return (int) (toLong(dividend) % toLong(divisor));
      }
    
      /**
       * Returns the unsigned {@code int} value represented by the given string.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 21:17:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

            public int getOpnum() { return 0x15; }
    
            public int retval;
            public String dfs_name;
            public int level;
            public int prefmaxlen;
            public DfsEnumStruct info;
            public NdrLong totalentries;
    
            public NetrDfsEnumEx(String dfs_name,
                        int level,
                        int prefmaxlen,
                        DfsEnumStruct info,
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 15K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SecurityBlob.java

         */
        @Override
        public int hashCode () {
            return this.b.hashCode();
        }
    
    
        /*
         * (non-Javadoc)
         * 
         * @see java.lang.Object#toString()
         */
        @Override
        public String toString () {
            String ret = "";
            for ( int i = 0; i < this.b.length; i++ ) {
                int n = this.b[ i ] & 0xff;
                if ( n <= 0x0f ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/SMBSigningDigest.java

         *            extra padding to include in signature
         * @param msg
         *            The message to verify
         * @return whether verification was unsuccessful
         */
        boolean verify ( byte[] data, int offset, int length, int extraPad, CommonServerMessageBlock msg );
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/UnicodeString.java

         */
        public UnicodeString ( String str, boolean zterm ) {
            this.zterm = zterm;
    
            int len = str.length();
            int zt = zterm ? 1 : 0;
    
            this.length = this.maximum_length = (short) ( ( len + zt ) * 2 );
            this.buffer = new short[len + zt];
    
            int i;
            for ( i = 0; i < len; i++ ) {
                this.buffer[ i ] = (short) str.charAt(i);
            }
            if ( zterm ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/Encdec.java

        public static final int TIME_1970_SEC_32BE = 1;
        public static final int TIME_1970_SEC_32LE = 2;
        public static final int TIME_1904_SEC_32BE = 3;
        public static final int TIME_1904_SEC_32LE = 4;
        public static final int TIME_1601_NANOS_64LE = 5;
        public static final int TIME_1601_NANOS_64BE = 6;
        public static final int TIME_1970_MILLIS_64BE = 7;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/FormBody.kt

      @get:JvmName("size")
      val size: Int
        get() = encodedNames.size
    
      @JvmName("-deprecated_size")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "size"),
        level = DeprecationLevel.ERROR,
      )
      fun size(): Int = size
    
      fun encodedName(index: Int): String = encodedNames[index]
    
      fun name(index: Int): String = encodedName(index).percentDecode(plusIsSpace = true)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top