Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 133 for 70 (0.03 sec)

  1. guava/src/com/google/common/primitives/Longs.java

      /**
       * Returns the {@code long} value whose byte representation is the given 8 bytes, in big-endian
       * order; equivalent to {@code Longs.fromByteArray(new byte[] {b1, b2, b3, b4, b5, b6, b7, b8})}.
       *
       * @since 7.0
       */
      public static long fromBytes(
          byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7, byte b8) {
        return (b1 & 0xFFL) << 56
            | (b2 & 0xFFL) << 48
            | (b3 & 0xFFL) << 40
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 29K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableList.java

       * 2, 3).reverse()} is equivalent to {@code ImmutableList.of(3, 2, 1)}.
       *
       * @return a view of this immutable list in reverse order
       * @since 7.0
       */
      public ImmutableList<E> reverse() {
        return (size() <= 1) ? this : new ReverseImmutableList<E>(this);
      }
    
      private static class ReverseImmutableList<E> extends ImmutableList<E> {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Aug 16 19:14:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                var col, row;
                for (var i = 0, col = 0, row = 0; i < 42; i++, col++, curDate = moment(curDate).add(24, 'hour')) {
                    if (i > 0 && col % 7 === 0) {
                        col = 0;
                        row++;
                    }
                    calendar[row][col] = curDate.clone().hour(hour).minute(minute).second(second);
                    curDate.hour(12);
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

                w.setDaemon(true);
    
                try {
                    w.start();
                    // use commonly acceptable buffer size
                    int bsize = Math.min(sh.getReceiveBufferSize() - 70, dh.getSendBufferSize() - 70);
                    byte[][] b = new byte[2][bsize];
                    copyRecursive(dest, b, bsize, w, sh, dh);
                }
                finally {
                    w.write(null, -1, null);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  5. api/go1.3.txt

    pkg syscall (openbsd-386), const SYS_GETDENTS = 99
    pkg syscall (openbsd-386), const SYS_GETDENTS ideal-int
    pkg syscall (openbsd-386), const SYS_GETFSSTAT = 62
    pkg syscall (openbsd-386), const SYS_GETITIMER = 70
    pkg syscall (openbsd-386), const SYS_GETRUSAGE = 19
    pkg syscall (openbsd-386), const SYS_GETTIMEOFDAY = 67
    pkg syscall (openbsd-386), const SYS_KEVENT = 72
    pkg syscall (openbsd-386), const SYS_LSTAT = 40
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  6. api/go1.10.txt

    pkg debug/elf, const R_ARM_ALU_SBREL_27_20_CK = 37
    pkg debug/elf, const R_ARM_ALU_SBREL_27_20_CK R_ARM
    pkg debug/elf, const R_ARM_ALU_SB_G0 = 71
    pkg debug/elf, const R_ARM_ALU_SB_G0 R_ARM
    pkg debug/elf, const R_ARM_ALU_SB_G0_NC = 70
    pkg debug/elf, const R_ARM_ALU_SB_G0_NC R_ARM
    pkg debug/elf, const R_ARM_ALU_SB_G1 = 73
    pkg debug/elf, const R_ARM_ALU_SB_G1 R_ARM
    pkg debug/elf, const R_ARM_ALU_SB_G1_NC = 72
    pkg debug/elf, const R_ARM_ALU_SB_G1_NC R_ARM
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

                t2.snd_buf_size = t1.snd_buf_size;
            } else {
                t1.snd_buf_size = t2.snd_buf_size;
            }
    
            bsize = Math.min( t1.rcv_buf_size - 70, t1.snd_buf_size - 70 );
            b = new byte[2][bsize];
    
            try {
                copyTo0( dest, b, bsize, w, req, resp );
            } finally {
                w.write( null, -1, null, 0 );
            }
        }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/LongMath.java

          // Look up n within the mask.
          return ((mask >> ((int) n - 2)) & 1) != 0;
        }
    
        if ((SIEVE_30 & (1 << (n % 30))) != 0) {
          return false;
        }
        if (n % 7 == 0 || n % 11 == 0 || n % 13 == 0) {
          return false;
        }
        if (n < 17 * 17) {
          return true;
        }
    
        for (long[] baseSet : millerRabinBaseSets) {
          if (n <= baseSet[0]) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 09 16:39:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. api/go1.14.txt

    pkg debug/dwarf, const TagCallSiteParameter = 73
    pkg debug/dwarf, const TagCallSiteParameter Tag
    pkg debug/dwarf, const TagCoarrayType = 68
    pkg debug/dwarf, const TagCoarrayType Tag
    pkg debug/dwarf, const TagDynamicType = 70
    pkg debug/dwarf, const TagDynamicType Tag
    pkg debug/dwarf, const TagGenericSubrange = 69
    pkg debug/dwarf, const TagGenericSubrange Tag
    pkg debug/dwarf, const TagImmutableType = 75
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    - github.com/magiconair/properties: [v1.8.1 → v1.8.0](https://github.com/magiconair/properties/compare/v1.8.1...v1.8.0)
    - github.com/spf13/viper: [v1.7.0 → v1.4.0](https://github.com/spf13/viper/compare/v1.7.0...v1.4.0)
    
    ### Removed
    - github.com/armon/go-metrics: [f0300d1](https://github.com/armon/go-metrics/tree/f0300d1)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Oct 23 04:40:14 UTC 2024
    - 309.1K bytes
    - Viewed (0)
Back to top