- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 61 for _english_ (0.07 sec)
-
docs/en/docs/contributing.md
That way, you can edit the documentation/source files and see the changes live. /// tip Alternatively, you can perform the same steps that scripts does manually. Go into the language directory, for the main docs in English it's at `docs/en/`: ```console $ cd docs/en/ ``` Then run `mkdocs` in that directory: ```console $ mkdocs serve --dev-addr 127.0.0.1:8008 ``` ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jul 26 11:35:42 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/LocaleUtil.java
* * @return the default locale */ public static Locale getDefault() { if (defaultLocaleSupplier != null) { return defaultLocaleSupplier.get(); } return Locale.ENGLISH; } /** * Sets the default locale supplier. * * @param localeSupplier * the supplier for the default locale */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
return StringUtil.EMPTY; } }); getMockRequest().setLocale(Locale.ENGLISH); assertNull(systemHelper.getForumLink()); } public void test_getHelpLink() { getMockRequest().setLocale(Locale.ENGLISH); assertEquals("https://fess.codelibs.org/98.76/admin/xxx-guide.html", systemHelper.getHelpLink("xxx"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
.github/workflows/translate.yml
language: description: Language to translate to as a letter code (e.g. "es" for Spanish) type: string required: false default: "" en_path: description: File path in English to translate (e.g. docs/en/docs/index.md) type: string required: false default: "" env: UV_SYSTEM_PYTHON: 1 jobs: job: if: github.repository_owner == 'fastapi'
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Aug 15 21:44:06 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcBinding.java
void setOption(final String key, final Object val) throws DcerpcException { if (key.equals("endpoint")) { this.endpoint = val.toString(); final String lep = this.endpoint.toLowerCase(Locale.ENGLISH); if (lep.startsWith("\\pipe\\")) { final String iface = INTERFACES.get(lep.substring(6)); if (iface != null) { int c, p;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/exception/SQLRuntimeExceptionTest.java
} /** * @throws Exception */ @Test public void testErrorMessage_en() throws Exception { // ## Arrange ## Locale.setDefault(Locale.ENGLISH); final SQLException sqlException = new SQLException("manyReason", "barState", 1234); final SQLRuntimeException sqlRuntimeException = new SQLRuntimeException(sqlException); // ## Act ##
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.2K bytes - Viewed (0) -
tests/update_many2many_test.go
if err := DB.Create(&user).Error; err != nil { t.Fatalf("errors happened when create: %v", err) } user.Languages = []Language{{Code: "zh-CN", Name: "Chinese"}, {Code: "en", Name: "English"}} for _, lang := range user.Languages { DB.Create(&lang) } user.Friends = []*User{{Name: "friend-1"}, {Name: "friend-2"}} if err := DB.Save(&user).Error; err != nil {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Jan 06 07:02:53 UTC 2022 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
if (req.getAttribute(LastaWebKey.USER_LOCALE_KEY) instanceof Locale locale) { return locale; } return Locale.ENGLISH; }).orElse(Locale.ENGLISH).getLanguage() + "\">"; } return "</html>"; } /** * Checks if a label with the specified key exists in the current request's label map. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (0) -
docs/language_names.yml
ce: нохчийн мотт ch: Chamoru co: corsu cr: ᓀᐦᐃᔭᐍᐏᐣ cs: čeština cu: ѩзыкъ словѣньскъ cv: чӑваш чӗлхи cy: Cymraeg da: dansk de: Deutsch dv: Dhivehi dz: རྫོང་ཁ ee: Eʋegbe el: Ελληνικά en: English eo: Esperanto es: español et: eesti eu: euskara fa: فارسی ff: Fulfulde fi: suomi fj: Vakaviti fo: føroyskt fr: français fy: Frysk ga: Gaeilge gd: Gàidhlig gl: galego gu: ગુજરાતી
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Jan 22 19:42:53 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java
* @return the searcher name */ public String getName() { if (name == null) { name = StringUtil.decamelize(this.getClass().getSimpleName().replace("Searcher", StringUtil.EMPTY)).toLowerCase(Locale.ENGLISH); } return name; } /** * Executes a search operation with the specified parameters. * This method must be implemented by concrete searcher classes. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0)