Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for lastname (0.15 sec)

  1. src/main/java/org/codelibs/fess/exec/Crawler.java

                }
    
                String hostname = fessConfig.getMailHostname();
                if (StringUtil.isBlank(hostname)) {
                    hostname = ComponentUtil.getSystemHelper().getHostname();
                }
                dataMap.put("hostname", hostname);
    
                logger.debug("\ninfoMap: {}\ndataMap: {}", infoMap, dataMap);
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                return env.get("COMPUTERNAME");
            }
            if (env.containsKey("HOSTNAME")) {
                return env.get("HOSTNAME");
            }
            try {
                return InetAddress.getLocalHost().getHostAddress();
            } catch (final UnknownHostException e) {
                logger.debug("Unknown hostname.", e);
            }
            return "Unknown";
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

        @Override
        public String toString() {
            return "WebAuthentication [webConfig=" + webConfig + ", authRealm=" + authRealm + ", createdBy=" + createdBy + ", createdTime="
                    + createdTime + ", hostname=" + hostname + ", parameters=" + parameters + ", port=" + port + ", protocolScheme="
                    + protocolScheme + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", username=" + username + ", webConfigId="
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/main/config/es/fess_config_file_authentication.json

                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "fileConfigId" : {
                "type" : "keyword"
              },
              "hostname" : {
                "type" : "keyword"
              },
              "parameters" : {
                "type" : "keyword"
              },
              "password" : {
                "type" : "keyword"
              },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1.2K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_de.properties

    labels.webauth_configuration=Web-Authentifizierung
    labels.webauth_list_hostname=Hostname
    labels.webauth_list_web_crawling_config=Konfigurationsname
    labels.webauth_any=Beliebig
    labels.webauth_create_web_config=Erstelle neue Web-Konfiguration
    labels.webauth_title_details=Web-Authentifizierung
    labels.webauth_hostname=Hostname
    labels.webauth_port=Port
    labels.webauth_realm=Bereich
    labels.webauth_scheme=Schema
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Excluded URLs For Indexing */
        public static final String LABELS_EXCLUDED_DOC_URLS = "{labels.excludedDocUrls}";
    
        /** The key of the message: Hostname */
        public static final String LABELS_HOSTNAME = "{labels.hostname}";
    
        /** The key of the message: ID */
        public static final String LABELS_ID = "{labels.id}";
    
        /** The key of the message: Included Paths For Crawling */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_fr.properties

    labels.file_auth_configuration	=	Authentification des fichiers
    labels.file_auth_list_hostname	=	Hostname
    labels.file_auth_list_file_crawling_config	=	Config Name
    labels.file_auth_any	=	Any
    labels.file_auth_create_file_config	=	Créer un nouveau fichier Config
    labels.file_auth_title_details	=	Authentification des fichiers
    labels.file_auth_hostname	=	Hostname
    labels.file_auth_port	=	Port
    labels.file_auth_scheme	=	Schéma
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_config.properties

    # common
    crawler.default.script=groovy
    crawler.http.thread_pool.size=0
    crawler.document.max.site.length=100
    crawler.document.site.encoding=UTF-8
    crawler.document.unknown.hostname=unknown
    crawler.document.use.site.encoding.on.english=false
    crawler.document.append.data=true
    crawler.document.append.filename=false
    crawler.document.max.alphanum.term.size=20
    crawler.document.max.symbol.term.size=10
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  9. src/main/config/openapi/openapi-user.yaml

                            host:
                              type: string
                              format: hostname
                              example: "fess.codelibs.org"
                            last_modified:
                              type: string
                              format: date-time
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            try {
                return InetAddress.getByName(host);
            } catch (final UnknownHostException e) {
                throw new FessSystemException("Failed to resolve the hostname: " + host, e);
            }
        }
    
        @PostConstruct
        public void open() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
    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)
Back to top