- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 361 for track (0.02 sec)
-
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java
import org.apache.commons.lang3.StringUtils; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.dict.DictionaryItem; /** * Represents an item in a stopwords dictionary. * This class stores a stopword and tracks its updated value. */ public class StopwordsItem extends DictionaryItem { /** The original stopword. */ private final String input; /** The new stopword, if updated. */ private String newInput;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComClose.java
dstIndex += 2; if (this.digest != null) { SMB1SigningDigest.writeUTime(getConfig(), this.lastWriteTime, dst, dstIndex); } else { log.trace("SmbComClose without a digest"); } return 6; } @Override protected int writeBytesWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
docs/fr/docs/tutorial/first-steps.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessSystemException.java
* * @param message the detail message describing the exception * @param enableSuppression whether suppression is enabled or disabled * @param writableStackTrace whether the stack trace should be writable */ protected FessSystemException(final String message, final boolean enableSuppression, final boolean writableStackTrace) { super(message, null, enableSuppression, writableStackTrace); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalLoadingCacheTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileHandleImpl.java
final long usage = this.usageCount.decrementAndGet(); if (usage == 0) { closeInternal(0L, false); } else if (log.isTraceEnabled()) { log.trace(String.format("Release %s (%d)", this, usage)); } } /** * {@inheritDoc} * * @see java.lang.Object#finalize() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 9.4K bytes - Viewed (1) -
docs/id/docs/tutorial/first-steps.md
Salah satu dari: * `POST` * `GET` * `PUT` * `DELETE` ...dan operasi lainnya yang unik: * `OPTIONS` * `HEAD` * `PATCH` * `TRACE` Dalam protokol HTTP, anda bisa berkomunikasi ke setiap path menggunakan satu (atau lebih) metode di atas. --- Ketika membuat API, anda umumnya menggunakan metode HTTP tertentu untuk proses tertentu.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Dec 12 21:46:36 UTC 2024 - 12K bytes - Viewed (0) -
docs/pt/docs/tutorial/first-steps.md
#### Operação "Operação" aqui se refere a um dos "métodos" HTTP. Um dos: * `POST` * `GET` * `PUT` * `DELETE` ...e os mais exóticos: * `OPTIONS` * `HEAD` * `PATCH` * `TRACE` No protocolo HTTP, você pode se comunicar com cada rota usando um (ou mais) desses "métodos". --- Ao construir APIs, você normalmente usa esses métodos HTTP para executar uma ação específica.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Jan 09 20:41:07 UTC 2025 - 10.8K bytes - Viewed (0) -
docs/pl/docs/tutorial/first-steps.md
"Operacje" tutaj odnoszą się do jednej z "metod" HTTP. Jedna z: * `POST` * `GET` * `PUT` * `DELETE` ...i te bardziej egzotyczne: * `OPTIONS` * `HEAD` * `PATCH` * `TRACE` W protokole HTTP można komunikować się z każdą ścieżką za pomocą jednej (lub więcej) "metod". --- Podczas tworzenia API zwykle używasz tych metod HTTP do wykonania określonej akcji. Zazwyczaj używasz:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 9.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
assertTrue(exception instanceof FessSystemException); assertTrue(exception instanceof RuntimeException); } public void test_suppressionAndStackTrace() { // Test that suppression and stack trace are disabled (as per constructor) String parentUrl = "http://example.com/parent"; String url = "http://example.com/child"; ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.8K bytes - Viewed (0)