Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for configured (0.2 sec)

  1. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    return true;
                }
            }
            return false;
        }
    
    
        /**
         *
         * @param svr
         * @return whether the given address is the configured broadcast address
         */
        private boolean isBroadcastAddress(InetAddress svr) {
            return svr.equals(this.baddr) || svr.getAddress()[3] == (byte) 0xFF;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  2. src/packaging/common/systemd/fess.service

    # in fess.yml and 'MAX_LOCKED_MEMORY=unlimited' in ${packaging.env.file}
    #LimitMEMLOCK=infinity
    
    # Shutdown delay in seconds, before process is tried to be killed with KILL (if configured)
    TimeoutStopSec=20
    
    [Install]
    WantedBy=multi-user.target
    
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

                    else if ( s.equalsIgnoreCase("WINS") ) {
                        if ( this.winsServer.length == 0 ) {
                            log.error("UniAddress resolveOrder specifies WINS however " + " WINS server has not been configured");
                            continue;
                        }
                        this.resolverOrder.add(ResolverType.RESOLVER_WINS);
                    }
                    else if ( s.equalsIgnoreCase("BCAST") ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  4. src/main/assemblies/files/fess

        fi
    
        # Make sure we don't use any predefined locale, as we check some exception message strings and rely on english language
        # As those strings are created by the OS, they are dependent on the configured locale
        LANG=en_US.UTF-8
        LC_ALL=en_US.UTF-8
    
        export HOSTNAME=`hostname -s`
    
        cd "$FESS_HOME"
    
        if [ "x$daemonized" = "x" ]; then
    Shell Script
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbSessionImpl.java

                t.acquire();
                this.trees.add(t);
                return t;
            }
        }
    
    
        /**
         * Establish a tree connection with the configured logon share
         * 
         * @throws SmbException
         */
        @Override
        public void treeConnectLogon () throws SmbException {
            String logonShare = getContext().getConfig().getLogonShare();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  6. README.md

    Fess also contains a Crawler, which can crawl documents on a [web server](https://fess.codelibs.org/14.12/admin/webconfig-guide.html), [file system](https://fess.codelibs.org/14.12/admin/fileconfig-guide.html), or...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Feb 25 00:40:07 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/FessBoot.java

                tomcatBoot.atBaseDir(new File(tempPath, "webapp").getAbsolutePath());
            }
            final String tomcatConfigPath = getTomcatConfigPath();
            if (tomcatConfigPath != null) {
                tomcatBoot.configure(tomcatConfigPath); // e.g. URIEncoding
            }
            tomcatBoot.logging(LOGGING_PROPERTIES, op -> {
                op.ignoreNoFile();
                String fessLogPath = System.getProperty("fess.log.path");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  8. README.fr.md

    Fess comprend aussi un Crawler, qui peut explorer les documents d'un [serveur Web](https://fess.codelibs.org/14.6/admin/webconfig-guide.html), un [système de fichiers](https://fess.codelibs.org/14.6/admin/fi...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 8.3K bytes
    - Viewed (0)
  9. src/main/resources/CLMessages.properties

    ECL0051=Can not parse of ({0})
    ECL0053=Bad parser configuration, because {0}
    ECL0054=SAXException occurred, because {0}
    ECL0055=Resource({0}) not found
    ECL0057=Method({1}) of class({0}) not found
    ECL0059=Can not configure property({1}) of {0}, because {2}
    ECL0061=SystemException occurred, because {0}
    ECL0063=RollbackException occurred, because {0}
    ECL0064=Constructor({1}) of class({0}) not found
    ECL0065=Property({1}) of class({0}) not found
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java

            return null;
        }
    
        @Override
        public void xacceptScalarSelectOption(ScalarSelectOption option) {
            // do nothing
        }
    
        @Override
        public void configure(StatementConfigCall<StatementConfig> confLambda) {
            // do nothing
        }
    
        @Override
        public StatementConfig getStatementConfig() {
            return null;
        }
    
        @Override
    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)
Back to top