- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 380 for stone (0.01 sec)
-
docs/uk/llm-prompt.md
### Target language Translate to Ukrainian (українська). Language code: uk. ### Grammar and tone 1) Use polite/formal address consistent with existing Ukrainian docs (use “ви/ваш”). 2) Keep the tone concise and technical. ### Headings 1) Follow existing Ukrainian heading style; keep headings short and instructional. 2) Do not add trailing punctuation to headings. ### Quotes
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Dec 19 12:51:53 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
* the item's current state. * </p> * * @param dictId the dictionary ID to store the character mapping item in * @param charMappingItem the character mapping item to store */ public void store(final String dictId, final CharMappingItem charMappingItem) { getCharMappingFile(dictId).ifPresent(file -> { if (charMappingItem.getId() == 0) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
docs/ja/llm-prompt.md
### Target language Translate to Japanese (日本語). Language code: ja. ### Grammar and tone 1) Use polite, instructional Japanese (です/ます調). 2) Keep the tone concise and technical (match existing Japanese FastAPI docs). ### Headings 1) Follow the existing Japanese style: short, descriptive headings (often noun phrases), e.g. 「チェック」. 2) Do not add a trailing period at the end of headings. ### Quotes
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 17:30:52 UTC 2025 - 1.3K bytes - Viewed (0) -
docs/ko/llm-prompt.md
### Target language Translate to Korean (한국어). Language code: ko. ### Grammar and tone 1) Use polite, instructional Korean (e.g. 합니다/하세요 style). 2) Keep the tone consistent with the existing Korean FastAPI docs. ### Headings 1) Follow existing Korean heading style (short, action-oriented headings like “확인하기”). 2) Do not add trailing punctuation to headings. ### Quotes
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 17:32:05 UTC 2025 - 1.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CrawlingParameterUtilTest.java
// Create a mock DataService DataService<AccessResult<?>> service = new DataService<AccessResult<?>>() { @Override public void store(AccessResult<?> accessResult) { } @Override public void update(AccessResult<?> accessResult) { } @OverrideRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 14.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
*/ public OptionalEntity<Role> getRole(final String id) { return roleBhv.selectByPK(id); } /** * Stores a role. * @param role The role to store. */ public void store(final Role role) { ComponentUtil.getLdapManager().insert(role); roleBhv.insertOrUpdate(role, op -> { op.setRefreshPolicy(Constants.TRUE); }); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
The Fish-Footman began by producing from under his arm a great letter, nearly as large as himself, and this he handed over to the other, saying, in a solemn tone, `For the Duchess. An invitation from the Queen to play croquet.' The Frog-Footman repeated, in the same solemn tone, only changing the order of the words a little, `From the Queen. An invitation for the Duchess to play croquet.'
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Apr 21 02:27:51 UTC 2017 - 145.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
return new ThreadPoolExecutor(nThreads, nThreads, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<>(nThreads), new ThreadPoolExecutor.CallerRunsPolicy()); } @Override public void store(final DataStoreParams paramMap, final Map<String, Object> dataMap) { final CrawlerStatsHelper crawlerStatsHelper = ComponentUtil.getCrawlerStatsHelper();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 29.7K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java
if (logger.isDebugEnabled()) { logger.debug("container was destroyed."); } return; } logger.warn("Failed to store failure url: url={}", urlQueue.getUrl(), e); } if (cae.isDebugEnabled()) { logger.debug("[{}] Crawling Access Exception: url={}", failureUrlId, urlQueue.getUrl(), cae);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/RepositoryCache.java
* responsible for creating a copy of the original data and store the copy in the cache. * * @param request The repository request from which this cache was retrieved, must not be {@code null}. * @param key The key to use associate the data with, must not be {@code null}. * @param data The data to store in the cache, may be {@code null}. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0)