Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for letoff (0.18 sec)

  1. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

             */
            public void setEee(final String eee) {
            }
    
            /**
             * @return int
             */
            public int getFff() {
                return fff_;
            }
    
            /**
             * @param fff
             */
            public void setFff(final int fff) {
                fff_ = fff;
            }
    
            /**
             * @return String
             */
            public String getJjj() {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/DES.java

                                             int outOff, int intLen ) {
    
            for ( int i = 0; i < intLen; ++i ) {
    
                outBytes[outOff + i * 4    ] = (byte) ( inInts[inOff + i] >>> 24 );
                outBytes[outOff + i * 4 + 1] = (byte) ( inInts[inOff + i] >>> 16 );
                outBytes[outOff + i * 4 + 2] = (byte) ( inInts[inOff + i] >>>  8 );
                outBytes[outOff + i * 4 + 3] = (byte)   inInts[inOff + i];
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComLogoffAndX.java

        /**
         * 
         * @param config
         * @param andx
         */
        public SmbComLogoffAndX ( Configuration config, ServerMessageBlock andx ) {
            super(config, SMB_COM_LOGOFF_ANDX, andx);
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.8K bytes
    - Viewed (0)
  4. 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}
         *
         * @see jcifs.Encodable#encode(byte[], int)
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbSession.java

                    }
                } while (state != 0);
            } catch (SmbException se) {
                logoff(true);
                connectionState = 0;
                throw se;
            } finally {
                transport.notifyAll();
            }
    }
        }
        void logoff( boolean inError ) {
    synchronized (transport()) {
    
            if (connectionState != 2) // not-connected
                return;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/hash/FarmHashFingerprint64Test.java

    import com.google.common.base.Strings;
    import java.util.Arrays;
    import junit.framework.TestCase;
    
    /**
     * Unit test for FarmHashFingerprint64.
     *
     * @author Kyle Maddison
     * @author Geoff Pike
     */
    public class FarmHashFingerprint64Test extends TestCase {
    
      private static final HashFunction HASH_FN = Hashing.farmHashFingerprint64();
    
      // If this test fails, all bets are off
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Jul 19 14:00:24 GMT 2016
    - 6.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/session/Smb2LogoffRequest.java

     */
    public class Smb2LogoffRequest extends ServerMessageBlock2Request<Smb2LogoffResponse> {
    
        /**
         * @param config
         */
        public Smb2LogoffRequest ( Configuration config ) {
            super(config, SMB2_LOGOFF);
        }
    
    
        @Override
        protected Smb2LogoffResponse createResponse ( CIFSContext tc, ServerMessageBlock2Request<Smb2LogoffResponse> req ) {
            return new Smb2LogoffResponse(tc.getConfig());
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/hash/FarmHashFingerprint64Test.java

    import com.google.common.base.Strings;
    import java.util.Arrays;
    import junit.framework.TestCase;
    
    /**
     * Unit test for FarmHashFingerprint64.
     *
     * @author Kyle Maddison
     * @author Geoff Pike
     */
    public class FarmHashFingerprint64Test extends TestCase {
    
      private static final HashFunction HASH_FN = Hashing.farmHashFingerprint64();
    
      // If this test fails, all bets are off
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Jun 26 15:56:47 GMT 2017
    - 6.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbComLogoffAndX.java

     */
    
    package jcifs.smb1.smb1;
    
    class SmbComLogoffAndX extends AndXServerMessageBlock {
    
        SmbComLogoffAndX( ServerMessageBlock andx ) {
            super( andx );
            command = SMB_COM_LOGOFF_ANDX;
        }
    
        int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int writeBytesWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/Fingerprint2011.java

    import static com.google.common.hash.LittleEndianByteArray.load64Safely;
    import static java.lang.Long.rotateRight;
    
    import com.google.common.annotations.VisibleForTesting;
    
    /**
     * Implementation of Geoff Pike's fingerprint2011 hash function. See {@link Hashing#fingerprint2011}
     * for information on the behaviour of the algorithm.
     *
     * <p>On Intel Core2 2.66, on 1000 bytes, fingerprint2011 takes 0.9 microseconds compared to
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Dec 28 17:50:25 GMT 2021
    - 6.5K bytes
    - Viewed (0)
Back to top