Search Options

Results per page
Sort
Preferred Languages
Advance

Results 371 - 380 of 1,857 for constructs (0.05 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

        /** Properties used for mail processing */
        protected Properties mailProperties = new Properties();
    
        /**
         * Constructs a new EmlExtractor.
         */
        public EmlExtractor() {
            // Default constructor
        }
    
        /* (non-Javadoc)
         * @see org.codelibs.robot.extractor.Extractor#getText(java.io.InputStream, java.util.Map)
         */
        @Override
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java

        protected int[] successfulHttpCodes;
    
        /** HTTP status codes considered not modified */
        protected int[] notModifiedHttpCodes;
    
        /**
         * Constructs a new DefaultResponseProcessor.
         */
        public DefaultResponseProcessor() {
            // Default constructor
        }
    
        /**
         * Processes response data based on HTTP status code and configured transformer.
         *
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java

        protected Integer accessTimeout = null; // seconds
    
        /** The maximum content length in bytes. Default is null (no limit). */
        protected Long maxContentLength = null;
    
        /**
         * Constructs a new AbstractCrawlerClient.
         */
        public AbstractCrawlerClient() {
            // NOP
        }
    
        /**
         * Initializes the client with parameters from initParamMap.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java

        /** Name of the extractor to use */
        private String extractorName = "tikaExtractor";
    
        /** Maximum content length allowed */
        private long maxContentLength = -1;
    
        /**
         * Constructs a new ExtractorBuilder.
         *
         * @param crawlerContainer the crawler container
         * @param in the input stream to extract data from
         * @param params the parameters for the extraction process
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

     * JVM, and search engine.
     */
    public class SystemMonitorTarget extends MonitorTarget {
        private static final Logger logger = LogManager.getLogger(SystemMonitorTarget.class);
    
        /**
         * Constructs a new system monitor target.
         */
        public SystemMonitorTarget() {
            super();
        }
    
        @Override
        public void expired() {
            final StringBuilder buf = new StringBuilder(1000);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/curl/CurlResponse.java

     * The CurlResponse class represents the response from a cURL request.
     * It implements the Closeable interface to allow proper resource management.
     */
    public class CurlResponse implements Closeable {
    
        /**
         * Constructs a new CurlResponse.
         */
        public CurlResponse() {
            // nothing
        }
    
        /**
         * The HTTP status code of the response.
         */
        private int httpStatusCode;
    
        /**
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java

     * </ul>
     *
     * @see Request
     * @see PopularWordsResponse
     */
    public class PopularWordsRequest extends Request<PopularWordsResponse> {
        /**
         * Constructs a new popular words request.
         */
        public PopularWordsRequest() {
            // nothing
        }
    
        private String index = null;
    
        private int size = 10;
    
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

        private final Map<String, Object> httpClientPropertyMap = new HashMap<>();
    
        /** List of request headers */
        private final List<Header> requestHeaderList = new ArrayList<>();
    
        /**
         * Constructs a new ApiExtractor.
         */
        public ApiExtractor() {
            // NOP
        }
    
        /**
         * Initializes the API extractor, setting up the HTTP client and configuration.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

        private byte[] lmHash, ntHash, blob = null;
        private String accountName, primaryDomain;
        private final SmbComNegotiateResponse negotiated;
        private int capabilities;
    
        /**
         * Constructs a session setup AndX request.
         *
         * @param tc the CIFS context containing configuration and credentials
         * @param negotiated the negotiation response containing server capabilities
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java

        private byte[] signingKey;
        private final String algorithmName;
        private final java.security.Provider provider;
        private volatile boolean closed = false;
    
        /**
         * Constructs a SMB2 signing digest with the specified session key and dialect
         *
         * @param sessionKey
         *            the session key for signing
         * @param dialect
         *            the SMB2 dialect version
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top