Search Options

Results per page
Sort
Preferred Languages
Advance

Results 301 - 310 of 353 for charactersOf (0.06 sec)

  1. cmd/server_test.go

    	c.Assert(err, nil)
    
    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	verifyError(c, response, "XMinioInvalidObjectName", "Object name contains unsupported characters.", http.StatusBadRequest)
    }
    
    // TestNotBeAbleToCreateObjectInNonexistentBucket - Validates the error response
    // on an attempt to upload an object into a non-existent bucket.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 118.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java

                assertEquals("share", result.getShare());
                assertTrue(result.getPath().length() > 0);
            }
    
            @Test
            @DisplayName("Should handle special characters in server names")
            void testSpecialCharactersInServerName() {
                when(mockReferral.getTtl()).thenReturn(300);
                when(mockReferral.getRFlags()).thenReturn(0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/audit/SecurityAuditLogger.java

            });
        }
    
        private String maskSessionId(String sessionId) {
            if (!maskSensitiveData || sessionId == null) {
                return sessionId;
            }
    
            // Show first 4 characters only
            if (sessionId.length() <= 4) {
                return "****";
            }
    
            return sessionId.substring(0, 4) + "****";
        }
    
        private String sanitizePath(String path) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            suggestJob.execute();
    
            assertNotNull(suggestJob.sessionId);
            assertEquals(15, suggestJob.sessionId.length());
            // Check that session ID contains only alphabetic characters
            assertTrue(suggestJob.sessionId.matches("[a-zA-Z]+"));
        }
    
        // Test command list construction with target classes directory
        public void test_executeSuggestCreator_withTargetClassesDir() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/dfs/ReferralTest.java

            bb.putShort((short) 22); // pathOffset
            bb.putShort((short) 0); // altPathOffset
            bb.putShort((short) 0); // nodeOffset
    
            // Unicode string with special characters
            bb.position(22);
            String path = "\\\\пример\\分享\\例え";
            bb.put(path.getBytes(StandardCharsets.UTF_16LE));
            bb.putShort((short) 0);
    
            // Decode
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 22K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java

            setConverter(response, 0);
            setNumEntries(response, 1);
    
            // Create a 15-character server name (maximum for NetBIOS name)
            String serverName = "SERVERNAME12345"; // 15 characters
            String comment = "Max length name";
    
            byte[] buffer = new byte[200];
            int bufferIndex = 0;
    
            // Write server name (exactly 15 bytes)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

                Smb2CloseResponse longNameResponse = new Smb2CloseResponse(mockConfig, testFileId, longFileName);
                assertEquals(longFileName, longNameResponse.getFileName());
    
                // Test with special characters in fileName
                String specialFileName = "file!@#$%^&*()_+-=[]{}|;':\",./<>?.txt";
                Smb2CloseResponse specialNameResponse = new Smb2CloseResponse(mockConfig, testFileId, specialFileName);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    address",badTelephone:"You have not given a correct phone number",badSecurityAnswer:"You have not given a correct answer to the security question",badDate:"You have not given a correct date",lengthBadStart:"The input value must be between ",lengthBadEnd:" characters",lengthTooLongStart:"The input value is longer than ",lengthTooShortStart:"The input value is shorter than ",notConfirmed:"Input values could not be confirmed",badDomain:"Incorrect domain value",badUrl:"The input value is not a correct URL",badCustomVal:"The...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/doc.go

    the allowed CPPFLAGS, CXXFLAGS, FFLAGS, and LDFLAGS.
    
    Also for security reasons, only a limited set of characters are
    permitted, notably alphanumeric characters and a few symbols, such as
    '.', that will not be interpreted in unexpected ways. Attempts to use
    forbidden characters will get a "malformed #cgo argument" error.
    
    When building, the CGO_CFLAGS, CGO_CPPFLAGS, CGO_CXXFLAGS, CGO_FFLAGS and
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Dec 11 23:57:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/HostnameVerifierTest.kt

            Ij1qLQ/YI8OogZPMk7YY46/ydWWp7UpD47zy/vKmm4pOc8Glc8MoDD6UADs=
            -----END CERTIFICATE-----
            """.trimIndent(),
          )
    
        // Replacement characters are deliberate, from certificate loading.
        assertThat(verifier.verify("���.com", session)).isFalse()
        assertThat(verifier.verify("℡.com", session)).isFalse()
      }
    
      @Test fun thatCatchesErrorsWithBadSession() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 40.4K bytes
    - Viewed (0)
Back to top