- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 63 for English (0.04 sec)
-
docs/ja/docs/deployment/concepts.md
次の章では、FastAPIアプリケーションをデプロイするための**具体的なレシピ**を紹介します。 しかし、今はこれらの重要な**コンセプトに基づくアイデア**を確認しましょう。これらのコンセプトは、他のどのタイプのWeb APIにも当てはまります。💡 ## セキュリティ - HTTPS <!-- NOTE: https.md written in Japanese does not exist, so it redirects to English one --> [前チャプターのHTTPSについて](https.md){.internal-link target=_blank}では、HTTPSがどのようにAPIを暗号化するのかについて学びました。 通常、アプリケーションサーバにとって**外部の**コンポーネントである**TLS Termination Proxy**によって提供されることが一般的です。このプロキシは通信の暗号化を担当します。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 24.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ActivityHelper.java
final Map<String, String> valueMap = new LinkedHashMap<>(); valueMap.put("action", action.replace('\t', '_').toUpperCase(Locale.ENGLISH)); valueMap.put("user", user.map(FessUserBean::getUserId).orElse("-")); final Comparator<Map.Entry<String, String>> c = Comparator.comparing(Map.Entry::getKey);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponseTest.java
/* * Tests for Smb2IoctlResponse. * * Notes: * - Comments are in English as requested. * - JUnit 5 is used; Mockito is not required here. */ package jcifs.internal.smb2.ioctl; import static org.junit.jupiter.api.Assertions.assertArrayEquals; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
return null; } final String localeName = value.trim().toLowerCase(Locale.ENGLISH).replace("-", "_"); for (final String supportedLang : supportedLanguages) { if (localeName.startsWith(supportedLang.toLowerCase(Locale.ENGLISH))) { return supportedLang; } } return null; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
* @param action the statistics action to record */ public void record(final Object keyObj, final StatsAction action) { record(keyObj, action.name().toLowerCase(Locale.ENGLISH)); } /** * Records a custom statistics action for the specified crawler object. * * @param keyObj the crawler object being tracked * @param action the custom action name to record
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
} private boolean checkFileType(final String fileName, final String[] exts) { if (fileName == null) { return false; } final String lFileName = fileName.toLowerCase(Locale.ENGLISH); for (final String ext : exts) { if (lFileName.endsWith("." + ext)) { return true; } } return false; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
Locale locale = ComponentUtil.getRequestManager().getUserLocale(); if (locale == null) { locale = Locale.ENGLISH; } runtime.registerData("langItems", systemHelper.getLanguageItems(locale)); final String username = systemHelper.getUsername(); runtime.registerData("username", username);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SearchHelperTest.java
private String sort = "score.desc"; private int pageSize = 10; private int startPosition = 0; private SearchRequestType type = SearchRequestType.SEARCH; private Locale locale = Locale.ENGLISH; @Override public String getQuery() { return query; } public void setQuery(String query) { this.query = query; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
int startPosition = 0; int pageSize = 10; int offset = 0; String[] extraQueries = new String[0]; Map<String, Object> attributes = new HashMap<>(); Locale locale = Locale.ENGLISH; SearchRequestType type = SearchRequestType.SEARCH; String similarDocHash = ""; @Override public String getQuery() { return query; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
} } } for (final String s : fessConfig.getSearchlogRequestHeadersAsArray()) { final String key = s.replace('-', '_').toLowerCase(Locale.ENGLISH); Collections.list(req.getHeaders(s)).stream().forEach(v -> { searchLog.addRequestHeaderValue(key, v); }); } });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0)