- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 100 for sEnSiTiVe (0.05 seconds)
-
src/main/java/jcifs/util/Strings.java
} } return len; } /** * Masks sensitive values in a string for security purposes. * * @param value the string potentially containing sensitive information * @return the string with sensitive parts masked, or the original string if masking is disabled */ public static String maskSecretValue(final String value) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.5K bytes - Click Count (0) -
internal/config/help.go
Type string `json:"type"` Description string `json:"description"` Optional bool `json:"optional"` // Indicates if the value contains sensitive info that shouldn't be exposed // in certain apis (such as Health Diagnostics/Callhome) Sensitive bool `json:"-"` // Indicates if the value is a secret such as a password that shouldn't be // exposed by the server Secret bool `json:"-"`
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Jun 23 14:45:27 GMT 2023 - 2.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Repository.java
/** * Gets the identifier of this repository. * * @return the (case-sensitive) identifier, never {@code null} */ @Nonnull String getId(); /** * Gets the type of the repository, for example "default". * * @return the (case-sensitive) type of the repository, never {@code null} */ @Nonnull String getType();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Aug 27 21:13:34 GMT 2024 - 3.2K bytes - Click Count (0) -
internal/config/policy/opa/help.go
Type: "url", Sensitive: true, }, config.HelpKV{ Key: AuthToken, Description: "[DEPRECATED] authorization token for OPA endpoint" + defaultHelpPostfix(AuthToken), Optional: true, Type: "string", Sensitive: true, Secret: true, }, config.HelpKV{ Key: config.Comment,
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Jun 23 14:45:27 GMT 2023 - 1.6K bytes - Click Count (0) -
cmd/admin-server-info.go
continue } split := strings.SplitN(v, "=", 2) key := split[0] value := "" if len(split) > 1 { value = split[1] } // Do not send sensitive creds. if _, ok := sensitive[key]; ok || strings.Contains(strings.ToLower(key), "password") || strings.HasSuffix(strings.ToLower(key), "key") { props.MinioEnvVars[key] = "*** EXISTS, REDACTED ***" continue }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri May 24 23:05:23 GMT 2024 - 4.9K bytes - Click Count (1) -
CONTRIBUTING.md
the behavior you are seeing is confirmed as a bug or issue, it can easily be re-raised in the issue tracker. ## Filing issues Sensitive security-related issues should be reported to [******@****.***](mailto:******@****.***). See the [security policy](https://golang.org/security) for details. The recommended way to file an issue is by running `go bug`.
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Mar 29 22:00:27 GMT 2023 - 1.3K bytes - Click Count (0) -
internal/config/compress/help.go
} Help = config.HelpKVS{ config.HelpKV{ Key: config.Enable, Description: "Enable or disable object compression", Type: "on|off", Optional: true, Sensitive: false, }, config.HelpKV{ Key: Extensions, Description: `comma separated file extensions` + defaultHelpPostfix(Extensions), Optional: true, Type: "csv", }, config.HelpKV{Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Jul 17 15:43:14 GMT 2022 - 1.8K bytes - Click Count (0) -
internal/config/identity/openid/jwt.go
// as an audience value. It MAY also contain identifiers for // other audiences. In the general case, the aud value is an // array of case sensitive strings. In the common special case // when there is one audience, the aud value MAY be a single // case sensitive audValues, ok := policy.GetValuesFromClaims(mclaims, audClaim) if !ok {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 8.4K bytes - Click Count (0) -
.github/ISSUE_TEMPLATE/12-telemetry.yml
For new upload configuration, which new counters will be collected, what do they measure, and why is it important to collect them? Note that uploaded data must not carry sensitive user information. See [go.dev/doc/telemetry#proposals](https://go.dev/doc/telemetry#proposals) for more details on telemetry proposals. validations: required: true - type: input attributes:Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue May 07 19:58:26 GMT 2024 - 1.2K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvnenc/package-info.java
*/ /** * Provides the API for the Maven Password Encryption tool ({@code mvnenc}). * * <p>This package contains interfaces and classes for the password encryption tool, * which helps secure sensitive information in Maven settings and configuration files.</p> * * <p>Key features include:</p> * <ul> * <li>Password encryption and decryption</li> * <li>Master password management</li>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Mar 04 14:17:18 GMT 2025 - 1.4K bytes - Click Count (0)