Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for lmhosts (0.28 sec)

  1. src/main/java/jcifs/config/BaseConfiguration.java

         * @param ro comma-separated list of resolver types (LMHOSTS, WINS, BCAST, DNS)
         */
        protected void initResolverOrder(final String ro) {
            this.resolverOrder = new ArrayList<>();
            if (ro == null || ro.length() == 0) {
                /*
                 * No resolveOrder has been specified, use the
                 * default which is LMHOSTS,DNS,WINS,BCAST or just
                 * LMHOSTS,DNS,BCAST if jcifs.netbios.wins has not
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Configuration.java

         * @since 2.2
         */
        int getLeaseBreakTimeout();
    
        /**
         *
         *
         * Property {@code jcifs.netbios.lmhosts} (string)
         *
         * @return lmhosts file to use
         */
        String getLmHostsFileName();
    
        /**
         *
         * Property {@code jcifs.netbios.scope} (string)
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/middleware.md

    * `www_redirect` - If set to True, requests to non-www versions of the allowed hosts will be redirected to their www counterparts. Defaults to `True`.
    
    If an incoming request does not validate correctly then a `400` response will be sent.
    
    ## `GZipMiddleware` { #gzipmiddleware }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:59:07 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            return designJspFileNameMap.entrySet().stream().map(e -> new Pair<>(e.getKey(), e.getValue())).toArray(n -> new Pair[n]);
        }
    
        /**
         * Refreshes the design JSP files for all virtual hosts.
         *
         * @return A list of paths to the refreshed files.
         */
        public List<Path> refreshDesignJspFiles() {
            final List<Path> fileList = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        protected Client createHttpClient(final FessConfig fessConfig, final String host) {
            final String[] hosts =
                    split(host, ",").get(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).toArray(n -> new String[n]));
            final Builder builder = Settings.builder()
                    .putList("http.hosts", hosts)
                    .put("processors", fessConfig.availableProcessors())
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top