- Sort Score
- Result 10 results
- Languages All
Results 821 - 830 of 1,615 for LENGTH (0.06 sec)
-
src/main/webapp/js/index.js
$searchButton.attr("disabled", false); }, 3000); return true; }); $(document).on("click touchend", function(e) { if (!$(e.target).closest("#searchOptions, #searchOptionsButton").length) { $("#searchOptions").removeClass("active"); } }); $("[data-toggle='control-options']").click(function(e) { e.preventDefault(); var target = $(this).attr("data-target") || $(this).attr("href");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
assertNotNull(docId); assertEquals(32, docId.length()); } public void test_abbreviateLongText() { assertEquals("", systemHelper.abbreviateLongText("")); assertEquals(4000, systemHelper.abbreviateLongText(Stream.generate(() -> "a").limit(4000).collect(Collectors.joining())).length());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} private static String stripLeadingAndTrailingQuotes(String str) { final int length = str.length(); if (length > 1 && str.startsWith("\"") && str.endsWith("\"") && str.substring(1, length - 1).indexOf('"') == -1) { str = str.substring(1, length - 1); } return str; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
docs/sts/ldap.md
| :-- | :-- | | _Type_ | _String_ | | _Length Constraints_ | _Minimum length of 2. Maximum length of 2048._ | | _Required_ | _Yes_ | ### LDAPPassword
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 22 04:30:56 UTC 2024 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
}); return sessionIdList; }); } protected String generateId(final String urlId) { final StringBuilder encodedBuf = new StringBuilder(urlId.length() + 100); for (int i = 0; i < urlId.length(); i++) { final char c = urlId.charAt(i); if (c >= 'a' && c <= 'z' // || c >= 'A' && c <= 'Z' // || c >= '0' && c <= '9' //
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.6K bytes - Viewed (0) -
common/config/.yamllint.yml
document-end: disable document-start: disable empty-lines: disable empty-values: disable hyphens: enable indentation: disable key-duplicates: enable key-ordering: disable line-length: disable new-line-at-end-of-file: disable new-lines: enable octal-values: disable quoted-strings: disable trailing-spaces: disable
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Sep 30 23:53:31 UTC 2020 - 863 bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/EqualsTester.java
@CanIgnoreReturnValue public EqualsTester addEqualityGroup(@Nullable Object @Nullable ... equalityGroup) { checkNotNull(equalityGroup); List<Object> list = new ArrayList<>(equalityGroup.length); for (int i = 0; i < equalityGroup.length; i++) { Object element = equalityGroup[i]; if (element == null) { throw new NullPointerException("at index " + i); } list.add(element); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 31 19:11:50 UTC 2023 - 6K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryAdapterIterator.java
e.getName(), true, SmbConstants.TYPE_FILESYSTEM, e.getAttributes(), e.createTime(), e.lastModified(), e.lastAccess(), e.length()); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0)