Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for dash (0.13 sec)

  1. src/main/resources/fess_label_de.properties

    labels.send_testmail=Sende Testmail
    labels.backup_configuration=Sichern
    labels.backup_name=Name
    labels.backup_bulk_file=Bulk-Datei
    labels.backup_button_upload=Hochladen
    labels.process_time_is_exceeded=Das Zeitlimit für die Suche wurde überschritten. Das angezeigte Suchergebnis kann daher unvollständig sein.
    labels.user_given_name=Vorname
    labels.givenName=Vorname
    labels.user_surname=Nachname
    labels.surame=Nachname
    labels.user_mail=E-Mail
    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)
  2. src/main/resources/fess_label_fr.properties

    labels.crawler	=	Crawler
    labels.crudMode	=	mode
    labels.errorCountMax	=	Nombre maximal d'erreurs
    labels.errorCountMin	=	Nombre d'erreurs minimum
    labels.facet	=	Facette
    labels.geo	=	Géo
    labels.groups	=	Groupes
    labels.hash	=	Hacher
    labels.kuromojiFile	=	Fichier Kuromoji
    labels.maxSize	=	Taille max
    labels.order	=	Order
    labels.purgeSuggestSearchLogDay	=	Purger les documents suggérés avant
    labels.q	=	Reqête
    labels.roles	=	Les rôles
    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)
  3. .github/workflows/maven.yml

          run: mvn -B antrun:run --file pom.xml
        - name: Build with Maven
          run: mvn -B source:jar javadoc:jar package --file pom.xml
        - name: Run Fess
          run: bash src/test/resources/before_script.sh
        - name: Run Integration Test
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Feb 10 03:25:34 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            final StringBuilder buf = new StringBuilder(50);
            for (int i = 0; i < docid.length(); i += splitSize) {
                int hash = docid.substring(i).hashCode() % splitHashSize;
                if (hash < 0) {
                    hash *= -1;
                }
                buf.append('_').append(Integer.toString(hash)).append('/');
            }
            buf.append(docid).append('.').append(imageExtention);
            return buf.toString();
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

                Arrays.sort(inputs);
            }
            if (newInputs != null) {
                Arrays.sort(newInputs);
            }
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(Arrays.hashCode(inputs), output);
        }
    
        @Override
        public boolean equals(final Object obj) {
            if (this == obj) {
                return true;
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

            return newToken != null;
        }
    
        public boolean isDeleted() {
            return isUpdated() && newToken.length() == 0;
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(pos, reading, segmentation, token);
        }
    
        @Override
        public boolean equals(final Object obj) {
            if (this == obj) {
                return true;
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_ru.properties

    labels.crawler=Сканер
    labels.crudMode=режим
    labels.errorCountMax=Максимольное количество ошибок
    labels.errorCountMin=Минимальное количество ошибок
    labels.facet=Фасет
    labels.geo=Гео
    labels.groups=Группы
    labels.hash=Хэш
    labels.kuromojiFile=Kuromoji файл
    labels.maxSize=Максимальный размер
    labels.order=Порядок
    labels.purgeSuggestSearchLogDay=Очистить предлагаемые документы до начала
    labels.q=Запрос
    labels.roles=Роли
    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)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Groups */
        public static final String LABELS_GROUPS = "{labels.groups}";
    
        /** The key of the message: Hash */
        public static final String LABELS_HASH = "{labels.hash}";
    
        /** The key of the message: Kuromoji File */
        public static final String LABELS_KUROMOJI_FILE = "{labels.kuromojiFile}";
    
        /** The key of the message: Max Size */
    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)
  9. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

            }
        }
    
        public String decodeSimilarDocHash(final String hash) {
            if (hash != null && hash.startsWith(SIMILAR_DOC_HASH_PREFIX) && hash.length() > SIMILAR_DOC_HASH_PREFIX.length()) {
                final byte[] decode = Base64.getUrlDecoder().decode(hash.substring(SIMILAR_DOC_HASH_PREFIX.length()));
                try (BufferedReader reader =
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProvider.java

        //                                                                      ==============
        @Override
        public String toString() {
            final String hash = Integer.toHexString(hashCode());
            return DfTypeUtil.toClassTitle(this) + ":{acceptCookieLocale=" + isAcceptCookieLocale() + "}@" + hash;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.8K bytes
    - Viewed (0)
Back to top