- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 289 for brands (0.14 sec)
-
src/test/java/jcifs/pac/PacTest.java
writeLittleEndianInt(baos, 10); // size writeLittleEndianLong(baos, 25); // Unaligned offset (not multiple of 8) // Add enough data to avoid array bounds issues while (baos.size() < 35) { baos.write(0); } byte[] pacData = baos.toByteArray();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
/** * Safely retrieves a value from a list at the specified index, handling bounds checking * and cleaning up quoted strings. * * @param list the list to retrieve the value from * @param index the index of the value to retrieve * @return the cleaned value at the specified index, or empty string if index is out of bounds */ static String getValue(final List<String> list, final int index) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SecurityBlobTest.java
@Test @DisplayName("length(): handles internal null defensively") void length_handlesNullInternalArray() throws Exception { // Arrange SecurityBlob blob = new SecurityBlob(new byte[] { 1, 2, 3 }); // Force internal field to null via reflection to exercise defensive branch
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
.github/dependabot.yml
- package-ecosystem: "maven" directory: "/" schedule: interval: "daily" target-branch: "maven-4.0.x" labels: - "mvn40" - "dependencies" - package-ecosystem: "maven" directory: "/" schedule: interval: "daily" target-branch: "maven-3.9.x" labels: - "mvn3" - "dependencies" - package-ecosystem: "github-actions"
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Aug 17 19:26:41 UTC 2025 - 1.7K bytes - Viewed (0) -
apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt
grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, Distribute and sublicense the Contribution of such Contributor, if any, and such Derivative Works. b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Jun 04 06:45:16 UTC 2024 - 13.9K bytes - Viewed (0) -
android/guava/src/com/google/common/net/PercentEscaper.java
// Start with "%--" and fill in the blanks char[] dest = new char[3]; dest[0] = '%'; dest[2] = upperHexDigits[cp & 0xF]; dest[1] = upperHexDigits[cp >>> 4]; return dest; } else if (cp <= 0x7ff) { // Two byte UTF-8 characters [cp >= 0x80 && cp <= 0x7ff] // Start with "%--%--" and fill in the blanks char[] dest = new char[6]; dest[0] = '%';
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 8.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/help.jsp
Queries can be inclusive or exclusive of the upper and lower bounds. If you want to find documents whose content_length fields have values between 1000 and 10000, inclusive, you can enter: <pre>content_length:[1000 TO 10000]</pre> If you want to exclude the upper and lower bounds, use "{}". </dd> <dt>Boost</dt> <dd> To boost a term use the "^" symbol with a boost factor (a number) at
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %> <aside class="main-sidebar sidebar-dark-primary"> <la:link href="/admin/" styleClass="brand-link text-center"> <span class="brand-text"> <c:if test="${empty param.brandName or empty param.logoPath}"><img src="${fe:url('/images/logo-head.png')}" alt="<la:message key="labels.header_brand_name" />" /></c:if
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Apr 15 20:55:28 UTC 2021 - 17.8K bytes - Viewed (0) -
src/main/java/jcifs/util/ServerResponseValidator.java
} } /** * Validate buffer access bounds * * @param buffer the buffer * @param offset offset to access * @param length length to read * @throws SmbException if access would exceed bounds */ public void validateBufferAccess(byte[] buffer, int offset, int length) throws SmbException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.6K bytes - Viewed (0) -
src/test/java/jcifs/util/ByteEncodableTest.java
} @Test void testEncodeSourceOffsetBeyondLength() { // Test with source offset + length exceeding source array bounds byte[] data = { 0x01, 0x02 }; // This constructor call itself should not throw an error, as it's just storing the values. // The error should occur when System.arraycopy is called.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.5K bytes - Viewed (0)