Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for setTimeout (2.74 sec)

  1. src/main/java/org/codelibs/fess/timer/HotThreadMonitorTarget.java

                final NodesHotThreadsResponse response =
                        esClient.admin().cluster().prepareNodesHotThreads().setIgnoreIdleThreads(ignoreIdleThreads).setInterval(interval)
                                .setThreads(threads).setTimeout(timeout).setType(type).execute().actionGet(timeout);
                append(buf, "cluster_name", () -> response.getClusterName().value()).append(',');
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java

                }
                if (searchType != null) {
                    builder.setSearchType(searchType);
                }
                if (timeoutInMillis != -1) {
                    builder.setTimeout(new TimeValue(timeoutInMillis));
                }
                if (version != null) {
                    builder.setVersion(version);
                }
                if (seqNoAndPrimaryTerm != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java

                }
                if (searchType != null) {
                    builder.setSearchType(searchType);
                }
                if (timeoutInMillis != -1) {
                    builder.setTimeout(new TimeValue(timeoutInMillis));
                }
                if (version != null) {
                    builder.setVersion(version);
                }
                if (seqNoAndPrimaryTerm != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

                }
                if (searchType != null) {
                    builder.setSearchType(searchType);
                }
                if (timeoutInMillis != -1) {
                    builder.setTimeout(new TimeValue(timeoutInMillis));
                }
                if (version != null) {
                    builder.setVersion(version);
                }
                if (seqNoAndPrimaryTerm != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                final long queryTimeout = fessConfig.getQueryTimeoutAsInteger().longValue();
                if (queryTimeout >= 0) {
                    searchRequestBuilder.setTimeout(TimeValue.timeValueMillis(queryTimeout));
                }
    
                try {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Query DSL: {}", searchRequestBuilder);
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NtlmServlet.java

            super.init(config);
    
            Properties p = new Properties();
            p.putAll(System.getProperties());
            /*
             * Set jcifs properties we know we want; soTimeout and cachePolicy to 10min.
             */
            p.setProperty("jcifs.smb.client.soTimeout", "300000");
            p.setProperty("jcifs.netbios.cachePolicy", "600");
    
            Enumeration<String> e = config.getInitParameterNames();
            String name;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

        private static final int RCV_BUF_SIZE = Config.getInt( "jcifs.smb1.netbios.rcv_buf_size", DEFAULT_RCV_BUF_SIZE );
        private static final int SO_TIMEOUT = Config.getInt( "jcifs.smb1.netbios.soTimeout", DEFAULT_SO_TIMEOUT );
        private static final int RETRY_COUNT = Config.getInt( "jcifs.smb1.netbios.retryCount", DEFAULT_RETRY_COUNT );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/http/NtlmHttpFilter.java

            String name;
    
            Properties p = new Properties();
            /*
             * Set jcifs properties we know we want; soTimeout and cachePolicy to 30min.
             */
            p.setProperty("jcifs.smb.client.soTimeout", "1800000");
            p.setProperty("jcifs.netbios.cachePolicy", "1200");
            /*
             * The Filter can only work with NTLMv1 as it uses a man-in-the-middle
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * -XX:G1MaxNewSizePercent=5<br>
         * -Djcifs.smb.client.responseTimeout=30000<br>
         * -Djcifs.smb.client.soTimeout=35000<br>
         * -Djcifs.smb.client.connTimeout=60000<br>
         * -Djcifs.smb.client.sessionTimeout=60000<br>
         * -Djcifs.smb1.smb.client.connTimeout=60000<br>
         * -Djcifs.smb1.smb.client.soTimeout=35000<br>
         * -Djcifs.smb1.smb.client.responseTimeout=30000<br>
         * -Dio.netty.noUnsafe=true<br>
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  10. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

        public void init( FilterConfig filterConfig ) throws ServletException {
            String name;
            int level;
    
            /* Set jcifs.smb1 properties we know we want; soTimeout and cachePolicy to 30min.
             */
            Config.setProperty( "jcifs.smb1.smb.client.soTimeout", "1800000" );
            Config.setProperty( "jcifs.smb1.netbios.cachePolicy", "1200" );
            /* The Filter can only work with NTLMv1 as it uses a man-in-the-middle
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.4K bytes
    - Viewed (0)
Back to top