Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for formik (0.17 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_index_form_search_btn = "{labels.index_form_search_btn}";
    
        /** The key of the message: Search */
        public static final String LABELS_index_osdd_title = "{labels.index_osdd_title}";
    
        /** The key of the message: Options */
        public static final String LABELS_index_form_option_btn = "{labels.index_form_option_btn}";
    
        /** The key of the message: Help */
    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)
  2. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                return new AzureAdCredential(authData);
            }
            final AuthenticationErrorResponse oidcResponse = (AuthenticationErrorResponse) authResponse;
            throw new SsoLoginException(String.format("Request for auth code failed: %s - %s", oidcResponse.getErrorObject().getCode(),
                    oidcResponse.getErrorObject().getDescription()));
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_fr.properties

    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
    labels.labeltype_configuration	=	Étiqueter
    labels.labeltype_title_details	=	Étiqueter
    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)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                });
                break;
            }
        }
    
        protected String generateNewIndexName(final String configIndex) {
            return configIndex + "." + new SimpleDateFormat("yyyyMMdd").format(new Date());
        }
    
        protected void insertBulkData(final FessConfig fessConfig, final String configIndex, final String dataPath) {
            try {
                final BulkRequestBuilder builder = client.prepareBulk();
    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)
  5. src/main/resources/fess_label_de.properties

    labels.profile.placeholder_new_password=Neues Passwort
    labels.profile.placeholder_confirm_new_password=Neues Passwort (bestätigen)
    labels.top.search=Suche
    labels.index_title=Fess
    labels.index_form_search_btn=Suche
    labels.index_osdd_title=Suche
    labels.index_form_option_btn=Optionen
    labels.index_help=Hilfe
    labels.search_options=Suchoptionen
    labels.search_options_close=Schließen
    labels.search_options_clear=Zurücksetzten
    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/taglib/FessFunctions.java

            sdf.setTimeZone(Constants.TIMEZONE_UTC);
            return sdf.format(date);
        }
    
        public static String formatDate(final LocalDateTime date) {
            if (date == null) {
                return StringUtil.EMPTY;
            }
            return date.format(DateTimeFormatter.ofPattern(Constants.ISO_DATETIME_FORMAT, Locale.ROOT));
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/log/exbhv/SearchLogBhv.java

     */
    package org.codelibs.fess.es.log.exbhv;
    
    import java.time.Instant;
    import java.time.LocalDateTime;
    import java.time.ZoneId;
    import java.time.format.DateTimeFormatter;
    import java.time.format.DateTimeParseException;
    import java.util.List;
    import java.util.Map;
    import java.util.regex.Pattern;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

    import java.io.IOException;
    import java.io.Reader;
    import java.io.Writer;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.time.LocalDateTime;
    import java.time.format.DateTimeFormatter;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    import javax.annotation.Resource;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java

        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
            validate(form, messages -> {}, this::asListHtml);
            final String id = form.id;
            accessTokenService.getAccessToken(id).ifPresent(entity -> {
                copyBeanToBean(entity, form,
                        op -> op.exclude(Constants.PERMISSIONS, EXPIRED_TIME).dateConverter(Constants.DEFAULT_DATETIME_FORMAT, EXPIRES));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/pt/stopwords.txt

    houveria
    houveríamos
    houveriam
    sou
    somos
    são
    era
    éramos
    eram
    fui
    foi
    fomos
    foram
    fora
    fôramos
    seja
    sejamos
    sejam
    fosse
    fôssemos
    fossem
    for
    formos
    forem
    serei
    será
    seremos
    serão
    seria
    seríamos
    seriam
    tenho
    tem
    temos
    tém
    tinha
    tínhamos
    tinham
    tive
    teve
    tivemos
    tiveram
    tivera
    tivéramos
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 1.4K bytes
    - Viewed (0)
Back to top