Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 588 for ooff (0.17 sec)

  1. src/main/java/jcifs/smb/SmbCopyUtil.java

                            long ioff = 0;
                            for ( int i = 0; i < chunks; i++ ) {
                                long absoff = ooff + ioff;
                                int csize = i == chunks - 1 ? lastChunkSize : maxChunkSize;
                                chunkInfo[ i ] = new SrvCopychunk(absoff, absoff, csize);
                                ioff += maxChunkSize;
                            }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 17.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/RC4.java

            i = j = 0;
        }
        public void update(byte[] src, int soff, int slen, byte[] dst, int doff)
        {
            int slim;
    
            slim = soff + slen;
            while (soff < slim) {
                i = (i + 1) & 0xff;
                j = (j + s[i]) & 0xff;
                byte t = s[i];
                s[i] = s[j];
                s[j] = t;
                dst[doff++] = (byte)(src[soff++] ^ s[(s[i] + s[j]) & 0xff]);
            }
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/ioctl/SrvCopychunk.java

        private long sourceOffset;
        private long targetOffset;
        private int length;
    
    
        /**
         * @param soff
         * @param toff
         * @param len
         */
        public SrvCopychunk ( long soff, long toff, int len ) {
            this.sourceOffset = soff;
            this.targetOffset = toff;
            this.length = len;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/input/all_off.yaml

    John Howard <******@****.***> 1578852924 -0800
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Jan 12 18:15:24 GMT 2020
    - 81 bytes
    - Viewed (0)
  5. src/main/webapp/css/admin/fonts/fa-brands-400.woff

    Shinsuke Sugaya <******@****.***> 1576358545 +0900
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Dec 14 21:22:25 GMT 2019
    - 87K bytes
    - Viewed (0)
  6. src/main/webapp/css/fonts/fa-solid-900.woff

    Shinsuke Sugaya <******@****.***> 1576358545 +0900
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Dec 14 21:22:25 GMT 2019
    - 96.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Ascii.java

       * single "stop" control is required to interrupt or turn off ancillary devices, DC4 is the
       * preferred assignment.)
       *
       * @since 8.0
       */
      public static final byte DC3 = 19; // aka XOFF
    
      /**
       * Transmission off. See {@link #XON} for explanation.
       *
       * @since 8.0
       */
      public static final byte XOFF = 19; // aka DC3
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Jul 19 15:43:07 GMT 2021
    - 21.6K bytes
    - Viewed (0)
  8. src/main/webapp/css/admin/fonts/fa-regular-400.woff

    Shinsuke Sugaya <******@****.***> 1576358545 +0900
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Dec 14 21:22:25 GMT 2019
    - 16.4K bytes
    - Viewed (0)
  9. src/main/webapp/css/admin/fonts/fa-solid-900.woff

    Shinsuke Sugaya <******@****.***> 1576358545 +0900
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Dec 14 21:22:25 GMT 2019
    - 96.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Ascii.java

       * single "stop" control is required to interrupt or turn off ancillary devices, DC4 is the
       * preferred assignment.)
       *
       * @since 8.0
       */
      public static final byte DC3 = 19; // aka XOFF
    
      /**
       * Transmission off. See {@link #XON} for explanation.
       *
       * @since 8.0
       */
      public static final byte XOFF = 19; // aka DC3
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jul 19 15:43:07 GMT 2021
    - 21.6K bytes
    - Viewed (0)
Back to top