Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,007 for privasi (0.14 sec)

  1. src/main/java/jcifs/internal/fscc/FileBasicInfo.java

    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    
    /**
     * 
     */
    public class FileBasicInfo implements BasicFileInformation {
    
        private long createTime;
        private long lastAccessTime;
        private long lastWriteTime;
        private long changeTime;
        private int attributes;
    
    
        /**
         * 
         */
        public FileBasicInfo () {}
    
    
        /**
         * @param create
         * @param lastAccess
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

    public class DataConfig extends BsDataConfig implements CrawlingConfig {
    
        private static final long serialVersionUID = 1L;
    
        private static final Logger logger = LogManager.getLogger(DataConfig.class);
    
        private static final String CRAWLER_WEB_PREFIX = "crawler.web.";
    
        private static final String CRAWLER_WEB_HEADER_PREFIX = CRAWLER_WEB_PREFIX + "header.";
    
        private static final String CRAWLER_WEB_AUTH = CRAWLER_WEB_PREFIX + "auth";
    
    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)
  3. src/main/java/jcifs/smb1/smb1/TransactNamedPipeOutputStream.java

    package jcifs.smb1.smb1;
    
    import java.io.OutputStream;
    import java.io.IOException;
    
    class TransactNamedPipeOutputStream extends SmbFileOutputStream {
    
        private String path;
        private SmbNamedPipe pipe;
        private byte[] tmp = new byte[1];
        private boolean dcePipe;
    
        TransactNamedPipeOutputStream( SmbNamedPipe pipe ) throws IOException {
            super(pipe, false, (pipe.pipeType & 0xFFFF00FF) | SmbFile.O_EXCL);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java

        //                                                                           =========
        @Resource
        private ProtwordsService protwordsService;
        @Resource
        private ProtwordsPager protwordsPager;
    
        // ===================================================================================
        //                                                                               Hook
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java

    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * 
     */
    public class SmbComWriteAndX extends AndXServerMessageBlock {
    
        private int fid, remaining, dataLength, dataOffset, off;
        private byte[] b;
        private long offset;
        private int pad;
        private int writeMode;
    
    
        /**
         * 
         * @param config
         */
        public SmbComWriteAndX ( Configuration config ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

        }
    
        /**
         *
         */
        public static class MyBean {
    
            private int fff_;
    
            private BigDecimal ggg_;
    
            private Timestamp hhh_;
    
            private String jjj;
    
            String kkk;
    
            private URL url_;
    
            private Calendar cal;
    
            /**
             *
             */
            public String str;
    
            /**
    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)
  7. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

        //                                                                           =========
        @Resource
        private LabelTypeService labelTypeService;
        @Resource
        private LabelTypePager labelTypePager;
        @Resource
        private RoleTypeService roleTypeService;
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java

    import org.codelibs.fess.crawler.exception.CrawlingAccessException;
    
    public class DataStoreCrawlingException extends CrawlingAccessException {
    
        private static final long serialVersionUID = 1L;
    
        private final String url;
    
        private final boolean abort;
    
        public DataStoreCrawlingException(final String url, final String message, final Exception e) {
            this(url, message, e, false);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/LockingAndXRange.java

    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * @author mbechler
     *
     */
    public class LockingAndXRange implements Encodable, Decodable {
    
        private final boolean largeFile;
        private int pid;
        private long byteOffset;
        private long lengthInBytes;
    
    
        /**
         * @param largeFile
         * 
         */
        public LockingAndXRange ( boolean largeFile ) {
            this.largeFile = largeFile;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/DialectVersion.java

        /**
         * SMB 3.1.1 - Windows 10/Server 2016
         */
        SMB311(Smb2Constants.SMB2_DIALECT_0311);
    
        private final boolean smb2;
        private final int dialect;
    
    
        /**
         * 
         */
        private DialectVersion () {
            this.smb2 = false;
            this.dialect = -1;
        }
    
    
        private DialectVersion ( int dialectId ) {
            this.smb2 = true;
            this.dialect = dialectId;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
Back to top