- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for Underscores (0.06 sec)
-
android/guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java
static class EmptyTest {} static class EmptyTests {} static class EmptyTestSuite {} static class Foo {} @SuppressWarnings("IdentifierName") // We're testing that we ignore classes with underscores. static class Foo_Bar {} public static class PublicFoo {} static class FooTest { @SuppressWarnings("unused") // accessed reflectively public void testPublic() {}Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 02:48:50 UTC 2024 - 5.4K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* <p>ASCII characters in the part are expected to be valid per RFC 1035, with underscore also * being allowed due to widespread practice. */ String asciiChars = CharMatcher.ascii().retainFrom(part); if (!PART_CHAR_MATCHER.matchesAllOf(asciiChars)) { return false; } // No initial or final dashes or underscores. if (DASH_MATCHER.matches(part.charAt(0))Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java
Files.writeString(specialDir.resolve("file-with-dashes.txt"), "dashes"); Files.writeString(specialDir.resolve("file_with_underscores.txt"), "underscores"); Files.writeString(specialDir.resolve("file.multiple.dots.txt"), "dots"); // Setup deeply nested directories Path currentDir = deepDir; for (int i = 1; i <= 5; i++) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
this.logLevel = logLevel; return this; } /** * Sets the log suffix for this job execution. * The suffix is trimmed and whitespace is replaced with underscores. * * @param logSuffix the suffix to append to log file names * @return this ExecJob instance for method chaining */ public ExecJob logSuffix(final String logSuffix) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 14.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java
Files.writeString(specialDir.resolve("file-with-dashes.txt"), "dashes"); Files.writeString(specialDir.resolve("file_with_underscores.txt"), "underscores"); Files.writeString(specialDir.resolve("file.multiple.dots.txt"), "dots"); // Empty directory for test_emptyDirectory Path emptyDir = publicDir.resolve("empty");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 31.9K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
* New: OkHttp includes a user-agent by default, like `okhttp/2.1.0-RC1`. * Fix: Handle response code `308 Permanent Redirect`. * Fix: Don't skip the callback if a call is canceled. * Fix: Permit hostnames with underscores. * Fix: Permit overriding the content-type in `OkApacheClient`. * Fix: Use the socket factory for direct connections. * Fix: Honor `OkUrlFactory` APIs that disable redirects.
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
} return value; } /** * Replaces special characters in a string with underscores for group names. * * @param value the string to process * @return the string with special characters replaced by underscores */ protected String replaceWithUnderscores(final String value) { return value.replaceAll("[/\\\\\\[\\]:;|=,+\\*?<>]", "_");Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 86.3K bytes - Viewed (0) -
src/main/resources/fess_config.properties
ldap.auth.validation=true # Maximum username length for LDAP. ldap.max.username.length=-1 # Whether to ignore NetBIOS name in LDAP. ldap.ignore.netbios.name=true # Whether to allow underscores in LDAP group names. ldap.group.name.with.underscores=false # Whether to use lowercase for LDAP permission names. ldap.lowercase.permission.name=false # Whether to allow empty permissions in LDAP. ldap.allow.empty.permission=true
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
*/ boolean isLdapIgnoreNetbiosName(); /** * Get the value for the key 'ldap.group.name.with.underscores'. <br> * The value is, e.g. false <br> * comment: Whether to allow underscores in LDAP group names. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getLdapGroupNameWithUnderscores();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2) -
CHANGELOG/CHANGELOG-1.4.md
* Allow Secret & ConfigMap keys to contain caps, dots, and underscores ([#25458](https://github.com/kubernetes/kubernetes/pull/25458), [@errm](https://github.com/errm))
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0)