Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 118 for lastname (0.3 sec)

  1. src/main/java/org/codelibs/core/io/Traverser.java

         * <p>
         * インスタンス構築時にルートパッケージが指定されている場合、 指定されたクラス名はルートパッケージからの相対名として解釈されます。
         * </p>
         *
         * @param className
         *            クラス名
         * @return 指定されたクラス名に対応するクラスファイルがこのインスタンスが扱うリソースの中に存在すれば <code>true</code>
         */
        boolean isExistClass(final String className);
    
        /**
         * このインスタンスが扱うクラスを探して {@link ClassHandler#processClass(String, String) ハンドラ}
         * をコールバックします。
         * <p>
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/SmbResourceLocator.java

         */
        String getShare ();
    
    
        /**
         * Retrieve the hostname of the server for this SMB resource. If the resources has been resolved by DFS this will
         * return the target name.
         * 
         * @return The server name
         */
        String getServerWithDfs ();
    
    
        /**
         * Retrieve the hostname of the server for this SMB resource. If this
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K 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/jcifs/smb1/smb1/SmbConstants.java

        static final boolean USE_EXTSEC = Config.getBoolean( "jcifs.smb1.smb.client.useExtendedSecurity", true );
    
        static final String NETBIOS_HOSTNAME = Config.getProperty( "jcifs.smb1.netbios.hostname", null );
        static final int LM_COMPATIBILITY = Config.getInt( "jcifs.smb1.smb.lmCompatibility", 3);
    
        static final int FLAGS_NONE                           = 0x00;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SIDCacheImpl.java

         * expired because under normal circumstances SID information never changes.
         *
         * @param authorityServerName
         *            The hostname of the server that should be queried. For maximum efficiency this should be the hostname
         *            of a domain controller however a member server will work as well and a domain controller may not
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.6K bytes
    - Viewed (0)
  8. 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)
  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