Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,007 for privasi (0.15 sec)

  1. src/main/java/jcifs/util/ByteEncodable.java

     */
    package jcifs.util;
    
    
    import jcifs.Encodable;
    
    
    /**
     * @author mbechler
     *
     */
    public class ByteEncodable implements Encodable {
    
        private byte[] bytes;
        private int off;
        private int len;
    
    
        /**
         * @param b
         * @param off
         * @param len
         */
        public ByteEncodable ( byte[] b, int off, int len ) {
            this.bytes = b;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

    
    /**
     * 
     * @internal
     */
    public class SMB1SigningDigest implements SMBSigningDigest {
    
        private static final Logger log = LoggerFactory.getLogger(SMB1SigningDigest.class);
    
        private MessageDigest digest;
        private byte[] macSigningKey;
        private boolean bypass = false;
        private int updates;
        private int signSequence;
    
    
        /**
         * 
         * @param macSigningKey
         * @param bypass
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 10.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/misc/Base64UtilTest.java

    import junit.framework.TestCase;
    
    /**
     * @author higa
     *
     */
    public class Base64UtilTest extends TestCase {
    
        private static final String ORIGINAL = "how now brown cow\r\n";
    
        private static final byte[] BINARY_DATA = ORIGINAL.getBytes();
    
        private static final String ENCODED_DATA = "aG93IG5vdyBicm93biBjb3cNCg==";
    
        /**
         * @throws Exception
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/ioctl/SrvCopychunk.java

    
    import jcifs.Encodable;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * @author mbechler
     *
     */
    public class SrvCopychunk implements Encodable {
    
        private long sourceOffset;
        private long targetOffset;
        private int length;
    
    
        /**
         * @param soff
         * @param toff
         * @param len
         */
        public SrvCopychunk ( long soff, long toff, int len ) {
    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/org/codelibs/core/exception/NoSuchFieldRuntimeException.java

    /**
     * {@link NoSuchFieldException}をラップする例外です。
     *
     * @author higa
     */
    public class NoSuchFieldRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 6609175673610180338L;
    
        private final Class<?> targetClass;
    
        private final String fieldName;
    
        /**
         * {@link NoSuchFieldRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/MethodNotStaticRuntimeException.java

     *
     * @author koichik
     */
    public class MethodNotStaticRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 7186052234464152208L;
    
        private final Class<?> targetClass;
    
        private final String methodName;
    
        /**
         * {@link MethodNotStaticRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/fscc/FsctlPipeWaitRequest.java

    import jcifs.Encodable;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * @author mbechler
     *
     */
    public class FsctlPipeWaitRequest implements Encodable {
    
        private final byte[] nameBytes;
        private final long timeout;
        private final boolean timeoutSpecified;
    
    
        /**
         * @param name
         * 
         */
        public FsctlPipeWaitRequest ( String name ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndXResponse.java

     */
    
    package jcifs.smb1.smb1;
    
    import java.io.UnsupportedEncodingException;
    
    class SmbComSessionSetupAndXResponse extends AndXServerMessageBlock {
    
        private String nativeOs = "";
        private String nativeLanMan = "";
        private String primaryDomain = "";
    
        boolean isLoggedInAsGuest;
        byte[] blob = null;
    
        SmbComSessionSetupAndXResponse( ServerMessageBlock andx ) {
            super( andx );
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

        //                                                                           =========
        @Resource
        private StemmerOverrideService stemmerOverrideService;
        @Resource
        private StemmerOverridePager stemmerOverridePager;
    
        // ===================================================================================
        //                                                                               Hook
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java

        //                                                                           =========
        @Resource
        private KuromojiService kuromojiService;
        @Resource
        private KuromojiPager kuromojiPager;
    
        // ===================================================================================
        //                                                                               Hook
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.8K bytes
    - Viewed (0)
Back to top