- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 39 for Coates (0.05 sec)
-
src/test/java/jcifs/internal/SmbNegotiationResponseTest.java
verify(negotiationResponse).canReuse(null, false); } @Test @DisplayName("Test signing state combinations") void testSigningStateCombinations() { // Test all combinations of signing states // Signing disabled when(negotiationResponse.isSigningEnabled()).thenReturn(false); when(negotiationResponse.isSigningRequired()).thenReturn(false);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java
/** * Gets a text from .eml file. * * @author shinsuke * */ public class EmlExtractor extends AbstractExtractor { /** Array of day of week abbreviations used for parsing received dates */ private static final String[] DAY_OF_WEEK = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" }; /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(EmlExtractor.class);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12.6K bytes - Viewed (0) -
pom.xml
<licenseFamilyCategory>LGPL</licenseFamilyCategory> <licenseFamilyName>GNU Lesser General Public License</licenseFamilyName> <notes /> <patterns> <pattern>This library is free software; you can redistribute it</pattern> <pattern>GNU Lesser General Public License</pattern> </patterns> </license> </licenses>
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 12.1K bytes - Viewed (0) -
ADDING_NEW_LANGUAGE.md
- `mapping.txt` - Character/token mappings **Example directory structure:** ``` dictionary/ └── sv/ ├── stopwords.txt ├── stemmer_override.txt └── protwords.txt ``` ## Important Notes ### No Database Changes Required - Language configuration is entirely file-based - No database or OpenSearch index updates needed - Settings are loaded at application startup and cachedRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 11:36:30 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
try { final PacDataInputStream pacStream = new PacDataInputStream(new DataInputStream(new ByteArrayInputStream(data))); // Skip firsts pacStream.skipBytes(20); // Dates this.logonTime = pacStream.readFiletime(); this.logoffTime = pacStream.readFiletime(); this.kickOffTime = pacStream.readFiletime(); this.pwdLastChangeTime = pacStream.readFiletime();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java
* </p> * <ul> * <li>Starting and finishing threads</li> * <li>Starting and cleaning up crawling</li> * <li>Handling unsupported URLs</li> * <li>Checking last modified dates</li> * <li>Getting content</li> * <li>Handling redirects</li> * <li>Processing responses</li> * <li>Handling exceptions during crawling and child URL processing</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 14K bytes - Viewed (0) -
src/main/resources/fess_indices/_aws/fess.json
"oricare", "oricât", "orice", "oricînd", "oricine", "oricît", "oricum", "oriunde", "până", "pe", "pentru", "peste", "pînă", "poate", "pot", "prea", "prima", "primul", "prin", "printr", "sa", "să", "săi", "sale", "sau", "său", "se", "şi", "sînt", "sîntem", "sînteţi", "spre", "sub", "sunt", "suntem", "sunteţi", "ta", "tăi", "tale", "tău", "te", "ţi", "ţie", "tine", "toată", "toate", "tot", "toţi", "totuşi", "tu", "un", "una", "unde", "undeva", "unei", "unele", "uneori", "unor", "vă", "vi", "voastră",...
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Jun 14 00:36:40 UTC 2025 - 117.3K bytes - Viewed (0) -
src/main/resources/fess_indices/_cloud/fess.json
"oricare", "oricât", "orice", "oricînd", "oricine", "oricît", "oricum", "oriunde", "până", "pe", "pentru", "peste", "pînă", "poate", "pot", "prea", "prima", "primul", "prin", "printr", "sa", "să", "săi", "sale", "sau", "său", "se", "şi", "sînt", "sîntem", "sînteţi", "spre", "sub", "sunt", "suntem", "sunteţi", "ta", "tăi", "tale", "tău", "te", "ţi", "ţie", "tine", "toată", "toate", "tot", "toţi", "totuşi", "tu", "un", "una", "unde", "undeva", "unei", "unele", "uneori", "unor", "vă", "vi", "voastră",...
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Feb 27 09:26:16 UTC 2021 - 117.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
import org.codelibs.core.exception.ClUnsupportedOperationException; import org.codelibs.core.exception.ParseRuntimeException; import org.codelibs.core.misc.LocaleUtil; /** * Utility for converting objects that represent only dates to {@link Date}, {@link Calendar}, or {@link java.sql.Date}. * <p> * For objects that represent only time, see {@link TimeConversionUtil}. For objects that represent both date and time, see {@link TimestampConversionUtil}. * </p>Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 19.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java
rule.clearConditions(); // Should match after clearing conditions assertTrue(rule.match(responseData)); } /** * Test rule matching with various ResponseData states */ public void test_matchWithVariousResponseDataStates() { ConfigurableRule rule = new ConfigurableRule(); rule.setRuleId("stateRule");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 22.7K bytes - Viewed (0)