- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for Underscores (0.04 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) -
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) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java
public Integer crudMode; /** * The name of the label type. */ @Required @Size(max = 100) public String name; /** * The value of the label type (alphanumeric and underscore only). */ @Required @Size(max = 100) @Pattern(regexp = "^[a-zA-Z0-9_]+$") public String value; /** * The paths to include for this label type. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java
* <p> * When copying between JavaBeans and {@link Map}, you can change the delimiter for property names. * For example, if you specify an underscore as the delimiter for JavaBeans and a period as the delimiter for {@link Map}, * the property names for the source and destination will be as follows: * </p> * <table border="1">Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.6K bytes - Viewed (0)