- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 82 for grapes (0.16 sec)
-
README.md
```java import org.codelibs.core.exception.*; // Runtime exception wrappers eliminate try-catch boilerplate try { // Code that might throw checked exceptions return ClassUtil.newInstance(className); // Wraps checked exceptions automatically } catch (ClassNotFoundRuntimeException e) { // Handle the wrapped exception logger.error("Class not found: " + className, e); } ``` ## 🏗️ Architecture & Design PatternsRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
import java.util.Iterator; import java.util.List; import java.util.ListIterator; import java.util.Map; /** * A response list that extends List functionality and includes pagination and search metadata. * This class wraps search results with pagination information, facet responses, and query statistics. * It implements the List interface to provide standard list operations while adding search-specific
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/resources/fess_label_es.properties
labels.confirmPassword=Confirmar labels.crawler=Rastreador labels.crudMode=Modo labels.errorCountMax=Número máximo de errores labels.errorCountMin=Número mínimo de errores labels.facet=Faceta labels.geo=Geo labels.groups=Grupos labels.hash=Hash labels.maxSize=Tamaño máximo labels.order=Orden labels.purgeSuggestSearchLogDay=Eliminar información de sugerencias anterior labels.q=Consulta labels.roles=Roles
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 49K bytes - Viewed (0) -
src/main/resources/fess_label_pt_BR.properties
labels.confirmPassword=Confirmar labels.crawler=Rastreador labels.crudMode=Modo labels.errorCountMax=Número máximo de erros labels.errorCountMin=Número mínimo de erros labels.facet=Faceta labels.geo=Geo labels.groups=Grupos labels.hash=Hash labels.maxSize=Tamanho máximo labels.order=Ordem labels.purgeSuggestSearchLogDay=Excluir informações de sugestão anteriores labels.q=Consulta labels.roles=Funções
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 48.7K bytes - Viewed (0) -
src/main/resources/fess_label_fr.properties
labels.crawler=Robot d'exploration labels.crudMode=Mode labels.errorCountMax=Nombre d'erreurs maximum labels.errorCountMin=Nombre d'erreurs minimum labels.facet=Facette labels.geo=Géo labels.groups=Groupes labels.hash=Hachage labels.maxSize=Taille maximale labels.order=Ordre labels.purgeSuggestSearchLogDay=Supprimer les anciennes informations de suggestion labels.q=Requête labels.roles=Rôles
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 49.2K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
log.info("Skip masking for debug level {}", enable ? "enabled" : "disabled"); } /** * Enable or disable stack trace inclusion * * @param enable true to include stack traces */ public void setIncludeStackTrace(boolean enable) { this.includeStackTrace = enable; } /** * Set minimum log level *
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
private static final String META_NAME_THUMBNAIL_CONTENT = "//META[@name=\"thumbnail\" or @name=\"THUMBNAIL\"]/@content"; /** XPath expression for extracting Open Graph image content from meta tags */ private static final String META_PROPERTY_OGIMAGE_CONTENT = "//META[@property=\"og:image\"]/@content"; /** XPath expression for extracting robots content from meta tags */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 54.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/TreeConnectResponseTest.java
byte[] buffer = new byte[16]; buffer[0] = 0x0F; // Invalid size (15 instead of 16) buffer[1] = 0x00; // When & Then - InvocationTargetException wraps the actual exception when using reflection Exception exception = assertThrows(Exception.class, () -> invokeMethod(response, "readBytesWireFormat", new Class[] { byte[].class, int.class }, buffer, 0),
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
pageSize, 0); } } /** * Creates a QueryResponseList containing the search results and metadata. * Wraps the document list with additional information about the search operation * including record counts, timing, and pagination details. * * @param documentList the list of search result documentsRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27.5K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
log.info("Connection lost, waiting for witness notification before retry"); // Wait briefly for witness notification before retrying try { Thread.sleep(2000); // 2 second grace period } catch (InterruptedException e) { Thread.currentThread().interrupt(); } } // Proceed with normal error handling/retry super.handleConnectionLoss(error);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0)