- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 7,478 for languages (0.07 seconds)
-
tests/helper_test.go
} }) t.Run("Languages", func(t *testing.T) { if len(user.Languages) != len(expect.Languages) { t.Fatalf("Languages should equal, expect: %v, got %v", len(expect.Languages), len(user.Languages)) } sort.Slice(user.Languages, func(i, j int) bool { return strings.Compare(user.Languages[i].Code, user.Languages[j].Code) > 0 })
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:27:38 GMT 2026 - 8.6K bytes - Click Count (0) -
ADDING_NEW_LANGUAGE.md
# Adding a New Language to Fess This guide explains how to add internationalization (i18n) support for a new language in Fess. ## Overview Fess uses a two-tier language support system: 1. **Full UI Translation** (13 languages): Complete user interface translation with label and message files 2. **Search/Analysis Support** (40+ languages): Language-specific text analysis for search indexing
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 11:36:30 GMT 2025 - 10.4K bytes - Click Count (1) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/LanguageProvider.java
* public Collection<Language> provides() { * return Collections.singleton(language("kotlin")); * } * } * </pre> * * @see org.apache.maven.api.Language * @see org.apache.maven.api.spi.ExtensibleEnumProvider * @since 4.0.0 */ @Experimental @Consumer @Named
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Apr 03 13:33:59 GMT 2025 - 1.9K bytes - Click Count (0) -
.github/workflows/build-docs.yml
cache-dependency-glob: | pyproject.toml uv.lock - name: Install docs extras run: uv sync --locked --no-dev --group docs - name: Update Languages run: uv run ./scripts/docs.py update-languages - uses: actions/cache@v5 with: key: mkdocs-cards-${{ matrix.lang }}-${{ github.ref }} path: docs/${{ matrix.lang }}/.cache - name: Build DocsCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 14 15:01:34 GMT 2026 - 3.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemSerializerTest.java
String[] tags = { "tag1" }; String[] roles = { "role1" }; String[] languages = { "en" }; long docFreq = 10L; long queryFreq = 5L; float userBoost = 1.5f; SuggestItem item = new SuggestItem(text, readings, fields, docFreq, queryFreq, userBoost, tags, roles, languages, SuggestItem.Kind.DOCUMENT); Map<String, Object> source = SuggestItemSerializer.toSource(item);
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 5.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/SearchLogDbm.java
"hitCountRelation", null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnLanguages = cci("languages", "languages", null, null, String.class, "languages", null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 16.3K bytes - Click Count (0) -
scripts/tests/test_translation_fixer/test_complex_doc/data/en_doc.md
```toml // This is a sample TOML code block title = "TOML Example" // Title of the document ``` ### Code blocks with comments with unsupported languages or without language specified { #code-blocks-with-unsupported-languages } The following code blocks use unsupported languages for comment preservation. Fixer tool will not preserve comments in these blocks. ```javascript // This is a sample JavaScript code block
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 08:08:04 GMT 2026 - 7.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
* @param field The field name. * @param lang The language. * @return The contents analyzer name. */ public String getContentsAnalyzerName(final String field, final String lang) { return getAnalyzerName(field, lang, m -> m.contentsAnalyzer, CONTENTS_ANALYZER); } /** * Returns the name of the contents reading analyzer for a given field and language.Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 24.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/SearchLog.java
+ fields + ", accessType=" + accessType + ", clientIp=" + clientIp + ", hitCount=" + hitCount + ", languages=" + languages + ", queryId=" + queryId + ", queryOffset=" + queryOffset + ", queryPageSize=" + queryPageSize + ", queryTime=" + queryTimeCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/ca/bs/BsSearchLogCA.java
public void setLanguages_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) { setLanguages_Terms("languages", opLambda, null); } public void setLanguages_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsSearchLogCA> aggsLambda) { setLanguages_Terms("languages", opLambda, aggsLambda); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 115.3K bytes - Click Count (0)