Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for parameters (0.17 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileAuthenticationCQ.java

        }
    
        public void setParameters_Equal(String parameters) {
            setParameters_Term(parameters, null);
        }
    
        public void setParameters_Equal(String parameters, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setParameters_Term(parameters, opLambda);
        }
    
        public void setParameters_Term(String parameters) {
            setParameters_Term(parameters, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 88.1K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_ru.properties

    labels.webauth_hostname=Hostname
    labels.webauth_port=Port
    labels.webauth_realm=Realm
    labels.webauth_scheme=Схема
    labels.webauth_username=Username
    labels.webauth_password=Password
    labels.webauth_parameters=Parameters
    labels.webauth_web_crawling_config=Web Config
    labels.webauth_scheme_basic=Basic
    labels.webauth_scheme_digest=Digest
    labels.webauth_scheme_ntlm=NTLM
    labels.webauth_scheme_form=Форма
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Additional Query Parameters */
        public static final String LABELS_APPEND_QUERY_PARAMETER = "{labels.appendQueryParameter}";
    
        /** The key of the message: Config ID */
        public static final String LABELS_CONFIG_ID = "{labels.configId}";
    
        /** The key of the message: Config Parameters */
        public static final String LABELS_CONFIG_PARAMETER = "{labels.configParameter}";
    
    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)
  4. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

        }
    
        public void test_convertParameterMap() {
            String parameters;
            Map<String, String> parameterMap;
    
            parameters = "";
            parameterMap = ParameterUtil.parse(parameters);
            assertEquals(0, parameterMap.size());
    
            parameters = "domain";
            parameterMap = ParameterUtil.parse(parameters);
            assertEquals(1, parameterMap.size());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/FileAuthentication.java

            return "FileAuthentication [fileConfig=" + fileConfig + ", createdBy=" + createdBy + ", createdTime=" + createdTime
                    + ", fileConfigId=" + fileConfigId + ", hostname=" + hostname + ", parameters=" + parameters + ", port=" + port
                    + ", protocolScheme=" + protocolScheme + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", username="
                    + username + ", docMeta=" + docMeta + "]";
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_de.properties

    labels.boost=Boost
    labels.crawlingConfigName=Name
    labels.crawlingConfigPath=Crawling-Pfad
    labels.processType=Prozesstyp
    labels.parameters=Parameter
    labels.designFile=Datei hochladen
    labels.bulkFile=Bulk-Datei
    labels.appendQueryParameter=Zusätzliche Query-Parameter
    labels.configId=Konfigurations-ID
    labels.configParameter=Konfigurationsparameter
    labels.content=Inhalt
    labels.csvFileEncoding=CSV-Kodierung
    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)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebAuthentication.java

            this.hostname = value;
        }
    
        public String getParameters() {
            checkSpecifiedProperty("parameters");
            return convertEmptyToNull(parameters);
        }
    
        public void setParameters(String value) {
            registerModifiedProperty("parameters");
            this.parameters = value;
        }
    
        public String getPassword() {
            checkSpecifiedProperty("password");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.crawlingConfigPath	=	Chemin d'exploration
    labels.processType	=	Type de processus
    labels.parameters	=	Paramètres
    labels.designFile	=	Envoyer  un fichier
    labels.bulkFile	=	Fichier en vrac
    labels.appendQueryParameter	=	Paramètres de requête supplémentaires
    labels.configId	=	ID de configuration
    labels.configParameter	=	Paramètres de configuration
    labels.content	=	Contenu
    labels.csvFileEncoding	=	Encodage CSV
    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/java/org/codelibs/fess/Constants.java

        public static final String USER_FAVORITE_PROPERTY = "user.favorite";
    
        public static final String SEARCH_LOG_PROPERTY = "search.log";
    
        public static final String APPEND_QUERY_PARAMETER_PROPERTY = "append.query.parameter";
    
        public static final String INCREMENTAL_CRAWLING_PROPERTY = "crawling.incremental";
    
        public static final String CRAWLING_THREAD_COUNT_PROPERTY = "crawling.thread.count";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsWebAuthenticationCB.java

                doColumn("createdTime");
            }
    
            public void columnHostname() {
                doColumn("hostname");
            }
    
            public void columnParameters() {
                doColumn("parameters");
            }
    
            public void columnPassword() {
                doColumn("password");
            }
    
            public void columnPort() {
                doColumn("port");
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
Back to top