- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 422 for matchers (0.05 sec)
-
android/guava/src/com/google/common/net/PercentEscaper.java
// TODO(dbeaumont): Support escapers where alphanumeric chars are not safe. checkNotNull(safeChars); // eager for GWT. // Avoid any misunderstandings about the behavior of this escaper if (safeChars.matches(".*[0-9A-Za-z].*")) { throw new IllegalArgumentException( "Alphanumeric characters are always 'safe' and should not be explicitly specified"); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 8.6K bytes - Viewed (0) -
src/test/java/jcifs/SmbWatchHandleTest.java
assertNotNull(result); assertEquals(1, result.size()); assertNotNull(result.get(0).getFileName()); assertTrue(result.get(0).getFileName().matches("file[1-3]\\.txt")); } } finally { executor.shutdown(); } } /** * Test watch timeout scenario */ @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java
// Execute corsHandlerFactory.add(originWithSlash, handlerWithSlash); corsHandlerFactory.add(originWithoutSlash, handlerWithoutSlash); // Verify - trailing slash matters assertEquals(handlerWithSlash, corsHandlerFactory.get(originWithSlash)); assertEquals(handlerWithoutSlash, corsHandlerFactory.get(originWithoutSlash)); } public void test_constructor() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
key = encrypt ? getEncryptionKey() : getDecryptionKey(); keyCopy = Arrays.copyOf(key, key.length); // Validate key length matches expected cipher requirements if (keyCopy.length != keyLength) { throw new IllegalArgumentException("Key length mismatch: expected " + keyLength + ", got " + keyCopy.length); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
tests/customize_field_test.go
t.Errorf("Failed to query CustomizeColumn") } } func TestCustomColumnAndIgnoredFieldClash(t *testing.T) { // Make sure an ignored field does not interfere with another field's custom // column name that matches the ignored field. type CustomColumnAndIgnoredFieldClash struct { Body string `gorm:"-"` RawBody string `gorm:"column:body"` } DB.Migrator().DropTable(&CustomColumnAndIgnoredFieldClash{})
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Sep 11 09:33:31 UTC 2020 - 6.9K bytes - Viewed (0) -
docs/de/docs/advanced/middleware.md
Die folgenden Argumente werden unterstützt: * `allowed_hosts` – Eine Liste von Domain-Namen, die als Hostnamen zulässig sein sollten. Wildcard-Domains wie `*.example.com` werden unterstützt, um Subdomains zu matchen. Um jeden Hostnamen zu erlauben, verwenden Sie entweder `allowed_hosts=["*"]` oder lassen Sie diese Middleware weg. Wenn ein eingehender Request nicht korrekt validiert wird, wird eine „400“-Response gesendet.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.3K bytes - Viewed (0) -
cmd/erasure-healing-common.go
dataErrsByPart[i] = make([]int, len(onlineDisks)) } inconsistent := 0 for i, meta := range partsMetadata { if !meta.IsValid() { // Since for majority of the cases erasure.Index matches with erasure.Distribution we can // consider the offline disks as consistent. continue } if !meta.Deleted { if len(meta.Erasure.Distribution) != len(onlineDisks) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoRequestTest.java
byte[] buffer = new byte[request.size()]; int encodedLength = request.encode(buffer, 0); // Verify encoded length matches size assertEquals(request.size(), encodedLength); // Verify capabilities (4 bytes) assertEquals(DEFAULT_CAPABILITIES, SMBUtil.readInt4(buffer, 0)); // Verify client GUID (16 bytes)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
// ====== /** * Handles the prologue phase of action execution. * <p> * This method catches UserRoleLoginException and redirects to the * appropriate action class. * </p> * * @param runtime the action runtime context
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.1K bytes - Viewed (0) -
okhttp/build.gradle.kts
allJvmArgs = allJvmArgs.filter { !it.startsWith("--add-opens") } } if (name.matches("test.*UnitTest".toRegex()) && javaLauncher.get().metadata.languageVersion.asInt() < 17) { // Work around robolectric requirements and limitations // https://github.com/robolectric/robolectric/issues/10419
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 03 03:59:03 UTC 2025 - 9.4K bytes - Viewed (0)