Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for doTest (0.19 sec)

  1. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

            // mimetype
            defaultDataMap.put(fessConfig.getIndexFieldMimetype(), mimeType);
            // title
            // content
            // cache
            // digest
            // host
            // site
            // url
            // anchor
            // content_length
            // last_modified
            // id
            // virtual_host
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.3K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

        }
    
        private AuthScheme getAuthScheme() {
            final String scheme = getProtocolScheme();
            if (Constants.BASIC.equals(scheme)) {
                return new BasicScheme();
            }
            if (Constants.DIGEST.equals(scheme)) {
                return new DigestScheme();
            }
            if (Constants.NTLM.equals(scheme)) {
                final Properties props = new Properties();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                        // NOP
                    }
                }
            }
    
            final String id = encodedBuf.toString();
            return MessageDigestUtil.digest(ComponentUtil.getFessConfig().getIndexIdDigestAlgorithm(), id);
        }
    
        public void setMaxSessionIdsInList(final int maxSessionIdsInList) {
            this.maxSessionIdsInList = maxSessionIdsInList;
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/Constants.java

        public static final String NUM_OF_THREADS = "numOfThreads";
    
        public static final String BASIC = "BASIC";
    
        public static final String DIGEST = "DIGEST";
    
        public static final String NTLM = "NTLM";
    
        public static final String FORM = "FORM";
    
        public static final String SAMBA = "SAMBA";
    
        public static final String FTP = "FTP";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/main/config/openapi/openapi-user.yaml

                            content_title:
                              type: string
                              example: "Open Source Enterprise Search Server: Fess — Fe..."
                            digest:
                              type: string
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  6. src/main/resources/fess_label_de.properties

    labels.webauth_username=Benutzername
    labels.webauth_password=Passwort
    labels.webauth_parameters=Parameter
    labels.webauth_web_crawling_config=Web-Konfiguration
    labels.webauth_scheme_basic=Basic
    labels.webauth_scheme_digest=Digest
    labels.webauth_scheme_ntlm=NTLM
    labels.webauth_scheme_form=Form
    labels.log_configuration=Protokolldateien
    labels.log_file_name=Dateiname
    labels.log_file_date=Zeitstempel
    labels.labeltype_configuration=Label
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_fr.properties

    labels.webauth_password	=	Mot de passe
    labels.webauth_parameters	=	Paramètres
    labels.webauth_web_crawling_config	=	Configuration Web
    labels.webauth_scheme_basic	=	Basique
    labels.webauth_scheme_digest	=	Digest
    labels.webauth_scheme_ntlm	=	NTLM
    labels.webauth_scheme_form	=	Former
    labels.log_configuration	=	Fichiers journaux
    labels.log_file_name	=	Nom de fichier
    labels.log_file_date	=	Horodatage
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java

                public static final String DEFAULT_LANG = "default.lang";
                public static final String DEFAULT_CONTENT = "default.content";
                public static final String DEFAULT_DIGEST = "default.digest";
                // xapth.<field>=<value>
            }
    
            // config.*
            public static class Config {
                public static final String KEEP_ORIGINAL_BODY = "keep.original.body";
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. cache */
        String INDEX_FIELD_CACHE = "index.field.cache";
    
        /** The key of the configuration. e.g. digest */
        String INDEX_FIELD_DIGEST = "index.field.digest";
    
        /** The key of the configuration. e.g. title */
        String INDEX_FIELD_TITLE = "index.field.title";
    
        /** The key of the configuration. e.g. host */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  10. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

            itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.webauth_scheme_digest"), Constants.DIGEST));
            itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.webauth_scheme_ntlm"), Constants.NTLM));
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.7K bytes
    - Viewed (0)
Back to top