- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 637 for caracter (0.05 sec)
-
docs/orchestration/docker-compose/nginx.conf
server minio3:9001; server minio4:9001; } server { listen 9000; listen [::]:9000; server_name localhost; # To allow special characters in headers ignore_invalid_headers off; # Allow any size file to be uploaded. # Set to a value such as 1000m; to restrict file size to a specific value client_max_body_size 0;
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Mar 05 06:32:39 UTC 2022 - 3K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Charsets.java
* * @author Mike Bostock * @since 1.0 */ @GwtCompatible public final class Charsets { /** * US-ASCII: seven-bit ASCII, the Basic Latin block of the Unicode character set (ISO646-US). * * @deprecated Use {@link StandardCharsets#US_ASCII} instead. */ @Deprecated @J2ktIncompatible @GwtIncompatible // Charset not supported by GWT
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/NetbiosNameTest.java
// NetBIOS names can be up to 15 characters String[] testNames = { "A", "SERVER", "LONGSERVERNAME", "EXACTLY15CHARS1" }; for (String testName : testNames) { when(mockNetbiosName.getName()).thenReturn(testName); assertEquals(testName, mockNetbiosName.getName()); } } @Test @DisplayName("Should handle special characters in names") void testSpecialCharacters() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
cmd/streaming-signature-v4_test.go
} if !bytes.Equal(hexChunkSignature, tt.chunkSign) { t.Errorf("Test %d: Expected %s, got %s", i+1, string(tt.chunkSign), string(hexChunkSignature)) } } } // Test read CRLF characters on input reader. func TestReadCRLF(t *testing.T) { type testCase struct { reader io.Reader expectedErr error } tests := []testCase{ // Test - 1 valid buffer with CRLF.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/util/ServerResponseValidator.java
} // Check for control characters for (int i = 0; i < str.length(); i++) { char c = str.charAt(i); if (c < 0x20 && c != '\t' && c != '\r' && c != '\n') { failedValidations.incrementAndGet(); log.warn("{} contains control characters", fieldName); throw new SmbException(fieldName + " contains control characters"); } } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.6K bytes - Viewed (0) -
docs/fr/docs/tutorial/path-params.md
/// check | vérifier Comme vous l'avez remarqué, la valeur reçue par la fonction (et renvoyée ensuite) est `3`, en tant qu'entier (`int`) Python, pas la chaîne de caractères (`string`) `"3"`. Grâce aux déclarations de types, **FastAPI** fournit du <abbr title="conversion de la chaîne de caractères venant de la requête HTTP en données Python">"parsing"</abbr> automatique. /// ## Validation de données
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 9.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
} // Test append with Unicode characters public void test_append_unicodeCharacters() { StringBuilder buf = new StringBuilder(); Supplier<Object> supplier = () -> "テスト 测试 테스트 🎉"; monitorTarget.append(buf, "unicodeKey", supplier); // Unicode characters are escaped in JSON format
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
// Verify timeout specified flag is set assertEquals(0x1, buffer[12]); } @Test @DisplayName("Test with special characters in pipe name") void testWithSpecialCharactersInPipeName() { // Test with special characters String pipeName = "\\\\?\\pipe\\test$pipe#name!"; FsctlPipeWaitRequest request = new FsctlPipeWaitRequest(pipeName);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java
assertEquals(Boolean.FALSE, ArbitraryInstances.get(boolean.class)); assertEquals(Boolean.FALSE, ArbitraryInstances.get(Boolean.class)); assertEquals(Character.valueOf('\0'), ArbitraryInstances.get(char.class)); assertEquals(Character.valueOf('\0'), ArbitraryInstances.get(Character.class)); assertEquals(Byte.valueOf((byte) 0), ArbitraryInstances.get(byte.class)); assertEquals(Byte.valueOf((byte) 0), ArbitraryInstances.get(Byte.class));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
* Writes text content to the HTTP response with specified content type and encoding. * @param text The text content to write. * @param contentType The content type for the response. * @param encoding The character encoding for the response. */ protected void write(final String text, final String contentType, final String encoding) { final StringBuilder buf = new StringBuilder(50); if (contentType == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0)