- Sort Score
- Result 10 results
- Languages All
Results 661 - 670 of 806 for ignored (0.23 sec)
-
compat/maven-compat/src/main/mdo/profiles.mdo
<description> What to do when verification of an artifact checksum fails. Valid values are "fail" (default for Maven 4 and above), "warn" (default for Maven 3) or "ignore". </description> <type>String</type> </field> </fields> </class> <class> <name>ActivationProperty</name> <version>1.0.0</version>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 22 11:03:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInternalInfoTest.java
assertTrue(result.contains("SmbQueryFileInternalInfo")); assertTrue(result.contains("indexNumber=" + expectedIndexNumber)); } @Test @DisplayName("Test decode ignores length parameter") void testDecodeIgnoresLengthParameter() throws SMBProtocolDecodingException { // The decode method should always read exactly 8 bytes regardless of len parameter byte[] buffer = new byte[20];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. false */ String CRAWLER_IGNORE_ROBOTS_TXT = "crawler.ignore.robots.txt"; /** The key of the configuration. e.g. false */ String CRAWLER_IGNORE_ROBOTS_TAGS = "crawler.ignore.robots.tags"; /** The key of the configuration. e.g. true */ String CRAWLER_IGNORE_CONTENT_EXCEPTION = "crawler.ignore.content.exception"; /** The key of the configuration. e.g. 404 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (2) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/MultipartReader.kt
if (partCount == 0) throw ProtocolException("expected at least 1 part") noMoreParts = true return null } 2, 3 -> { // " " or "\t" Ignore whitespace and keep looking. whitespace = true continue@afterBoundaryLoop } -1 -> throw ProtocolException("unexpected characters after boundary") } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 02:11:14 UTC 2025 - 7.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RouteSelector.kt
// address should be tried. val address = address ?: return hostName // The InetSocketAddress has a specific address: we should only try that address. Therefore we // return the address and ignore any host name that may be available. return address.hostAddress } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.3K bytes - Viewed (0) -
cmd/storage-errors.go
// errSkipFile returned by the fn() for readDirFn() when it needs // to proceed to next entry. var errSkipFile = errors.New("skip this file") var errIgnoreFileContrib = errors.New("ignore this file's contribution toward data-usage") // errXLBackend XL drive mode requires fresh deployment. var errXLBackend = errors.New("XL backend requires fresh drive")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Apr 04 12:04:40 UTC 2024 - 6.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
*/ protected boolean expandEntityRef = false; /** * If true, the parser will ignore comments. */ protected boolean ignoringComments; /** * If true, the parser will ignore ignorable whitespace in element content. */ protected boolean ignoringElementContentWhitespace; /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
@Test @DisplayName("Should ignore extended security setting") void testSetExtendedSecurity() { testMessage.setExtendedSecurity(true); testMessage.setExtendedSecurity(false); // Method is empty, just ensure no exception } @Test @DisplayName("Should ignore UID setting") void testSetUid() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
try { Thread.sleep(10); // Simulate processing time } catch (InterruptedException e) { // Ignore } totalTime = System.currentTimeMillis() - startTime; } @Override public long getDocumentSize() { return 1L;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
// 2. All methods should be static java.lang.reflect.Method[] methods = SystemUtil.class.getDeclaredMethods(); for (java.lang.reflect.Method method : methods) { if (!method.isSynthetic()) { // Ignore compiler-generated methods assertTrue("Method " + method.getName() + " should be static", java.lang.reflect.Modifier.isStatic(method.getModifiers())); } } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 12.9K bytes - Viewed (0)