- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 34 for SeNsItIvE (0.24 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/util/SystemUtil.java
} /** * Gets the compiled pattern for matching sensitive property/environment variable keys. * The pattern is read from the system property 'app.log.sensitive.property.pattern'. * If not set, a default pattern matching common sensitive key names is used. * * @return The compiled Pattern for sensitive key matching */ private static Pattern getSensitivePattern() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 03:32:50 GMT 2026 - 3.1K bytes - Click Count (0) -
okhttp-logging-interceptor/README.md
**Warning**: The logs generated by this interceptor when using the `HEADERS` or `BODY` levels have the potential to leak sensitive information such as "Authorization" or "Cookie" headers and the contents of request and response bodies. This data should only be logged in a controlled way or in a non-production environment. You can redact headers that may contain sensitive information by calling `redactHeader()`. ```java logging.redactHeader("Authorization");
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Oct 30 21:39:59 GMT 2025 - 1.3K bytes - Click Count (0) -
okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Nov 07 02:57:33 GMT 2025 - 39.4K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthentication.java
* * <p><b>Security Note:</b> This class stores credentials in memory. For security best practices: * <ul> * <li>Call {@link #clearCredentials()} after authentication is complete to clear sensitive data from memory</li> * <li>Avoid logging instances of this class as it may expose credentials</li> * <li>Consider using external secret management systems for credential storage in production</li> * </ul> *
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sun Jan 04 09:30:17 GMT 2026 - 4.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
} @Test public void test_maskSensitiveValue_withPrivate() { assertEquals("********", SystemUtil.maskSensitiveValue("PRIVATE_DATA", "sensitive")); assertEquals("********", SystemUtil.maskSensitiveValue("private_config", "internal")); } @Test public void test_maskSensitiveValue_safeValues() { // These should NOT be maskedCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java
setupVirtualHostHelper("/Site1", "/SITE2"); // The current implementation is case-sensitive Boolean result = invokeIsValidVirtualHostPath("/site1"); assertFalse("Case mismatch should be blocked (implementation is case-sensitive)", result); } // ===================================================================================
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 13.6K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java
* Used for compilation, execution and Javadoc among others. * The Java tools location is {@link StandardLocation#CLASS_PATH}. * * <h4>Context-sensitive interpretation</h4> * A dependency with this path type will not necessarily be placed on the class path. * There are two circumstances where the dependency may nevertheless be placed somewhere else: * * <ul>Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Dec 15 11:13:42 GMT 2025 - 15.7K bytes - Click Count (1) -
android/guava-tests/test/com/google/common/hash/MessageDigestHashFunctionTest.java
// - Some providers may choose to also include alias names. // - For example, the "SHA-1" algorithm might be referred to as "SHA1". // - The algorithm name is not case-sensitive. @SuppressWarnings("deprecation") // We still need to test our deprecated APIs. private static final ImmutableMap<String, HashFunction> ALGORITHMS = new ImmutableMap.Builder<String, HashFunction>()
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 4.9K bytes - Click Count (0) -
fastapi/.agents/skills/fastapi/SKILL.md
@app.get("/items/me") async def get_item() -> Item: return Item(name="Plumbus", description="All-purpose home device") ``` **Important**: Return types or response models are what filter data ensuring no sensitive information is exposed. And they are used to serialize data with Pydantic (in Rust), this is the main idea that can increase response performance.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 01 10:05:57 GMT 2026 - 10.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java
assertFalse(goAction.isFileSystemPath("C:\\Windows\\System32")); } @Test public void test_isFileSystemPath_case_sensitivity() { // URLs are case-sensitive for protocol assertFalse(goAction.isFileSystemPath("FILE://path")); assertFalse(goAction.isFileSystemPath("S3://bucket/path")); assertFalse(goAction.isFileSystemPath("GCS://bucket/path"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 8.3K bytes - Click Count (0)