- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for English (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java
return super.godHandPrologue(runtime); } /** * Converts validation messages to a localized string representation for API responses. * Uses the request locale if available, otherwise defaults to English. * * @param validationMessagesLambda lambda function that adds validation messages * @return concatenated string of localized validation messages separated by spaces */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/zh-cn/stopwords.txt
+ / \ 《 》 — - , 。 、 : ; ! · ? “ ” ) ( 【 】 [ ] ● # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese) # English Stop Words
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 17 08:00:22 UTC 2017 - 310 bytes - Viewed (0) -
src/test/java/org/codelibs/core/exception/NullArgumentExceptionTest.java
} /** * @throws Exception */ @Test public void testErrorMessage_en() throws Exception { // ## Arrange ## Locale.setDefault(Locale.ENGLISH); final NullArgumentException nullArgumentException = new NullArgumentException("hoge"); assertThat(nullArgumentException.getArgName(), is("hoge"));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/zh-tw/stopwords.txt
+ / \ 《 》 — - , 。 、 : ; ! · ? “ ” ) ( 【 】 [ ] ● # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese) # English Stop Words
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 17 08:00:22 UTC 2017 - 310 bytes - Viewed (0) -
schema/constraint.go
package schema import ( "regexp" "strings" "gorm.io/gorm/clause" ) // reg match english letters and midline var regEnLetterAndMidline = regexp.MustCompile(`^[\w-]+$`) type CheckConstraint struct { Name string Constraint string // length(phone) >= 10 *Field } func (chk *CheckConstraint) GetName() string { return chk.Name } func (chk *CheckConstraint) Build() (sql string, vars []interface{}) {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Mar 18 07:33:54 UTC 2024 - 1.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) -
.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)