- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 4,134 for language (0.05 seconds)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Language.java
@SuppressWarnings("checkstyle:InterfaceIsType") public interface Language extends ExtensibleEnum { /** * The "none" language. It is not versioned, family is same to itself, and compatible with itself only. * In turn, every {@link Language} implementation must be compatible with {@code NONE} language. */ Language NONE = language("none"); /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Feb 07 15:09:52 GMT 2026 - 2.3K bytes - Click Count (0) -
doc/next/2-language.md
## Changes to the language {#language}...Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Jan 21 20:27:12 GMT 2026 - 41 bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBadMultiLangSnippets.java
} private static Language deduceLanguage(String sourceLang) { if (sourceLang != null) { if ("kotlin".equalsIgnoreCase(sourceLang)) { return Language.KOTLIN; } if ("groovy".equalsIgnoreCase(sourceLang)) { return Language.GROOVY; } } return Language.UNKNOWN; }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Aug 29 10:12:17 GMT 2025 - 7.2K 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) -
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) -
.github/workflows/translate.yml
- name: Export Language Codes id: show-langs run: | echo "langs=$(uv run ./scripts/translate.py llm-translatable-json)" >> $GITHUB_OUTPUT echo "commands=$(uv run ./scripts/translate.py commands-json)" >> $GITHUB_OUTPUT env: LANGUAGE: ${{ github.event.inputs.language }} COMMAND: ${{ github.event.inputs.command }} translate:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Mar 18 15:36:56 GMT 2026 - 4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/LanguageHelper.java
if (doc.containsKey(f)) { language = detectLanguage(DocumentUtil.getValue(doc, f, String.class)); if (language != null) { if (logger.isDebugEnabled()) { logger.debug("set {} to lang field", language); } doc.put(fessConfig.getIndexFieldLang(), language); break; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 6.9K bytes - Click Count (0) -
pyproject.toml
"Framework :: Pydantic :: 2", "Intended Audience :: Developers", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", "Topic :: Internet :: WWW/HTTP :: HTTP Servers", "Topic :: Internet :: WWW/HTTP",Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 12:36:49 GMT 2026 - 10.3K bytes - Click Count (0) -
.pre-commit-config.yaml
- id: generate-readme language: unsupported name: generate README.md from index.md entry: uv run ./scripts/docs.py generate-readme files: ^docs/en/docs/index\.md|docs/en/data/sponsors\.yml|scripts/docs\.py$ pass_filenames: false - id: update-languages language: unsupported name: update languages entry: uv run ./scripts/docs.py update-languagesCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Apr 03 12:06:36 GMT 2026 - 2.6K bytes - Click Count (1) -
scripts/translate.py
@app.command() def update_and_add( language: Annotated[str, typer.Option(envvar="LANGUAGE")], max: Annotated[int, typer.Option(envvar="MAX")] = 10, ) -> None: print(f"Updating outdated translations for {language}") update_outdated(language=language, max=max) print(f"Adding missing translations for {language}") add_missing(language=language, max=max) print(f"Done updating and adding for {language}")
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:37:41 GMT 2026 - 15.8K bytes - Click Count (0)