- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 232 for appended (0.24 sec)
-
src/main/java/org/codelibs/core/collection/ArrayUtil.java
} /** * Returns a new array with the specified object appended to the end. * * @param <T> * the type of the array elements * @param array * the array. Must not be {@literal null} * @param obj * the object to add * @return a new array with the object appended */ public static <T> T[] add(final T[] array, final T obj) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 41.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/DfsReferralTest.java
// When initialReferral.append(appendedReferral); // Then assertEquals(appendedReferral, initialReferral.next, "The 'next' property of the initial referral should point to the appended referral."); assertEquals(initialReferral, appendedReferral.next, "The 'next' property of the appended referral should point back to the initial referral, closing the loop.");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java
return append(String.valueOf(value)); } /** * Append content to the message buffer. * * @param value the content to append * @param start the starting index of the subsequence to be appended * @param end the end index of the subsequence to be appended * @return the current builder */ @Nonnull
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Nov 02 09:29:52 UTC 2024 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
} /** * Gets the additional query string that is appended to all search queries. * * @return the additionalQuery */ public String getAdditionalQuery() { return additionalQuery; } /** * Sets the additional query string that is appended to all search queries. * * @param additionalQuery the additionalQuery to set */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt
* limitations under the License. */ package okhttp3.internal.ws import okio.Buffer import okio.ByteString.Companion.encodeUtf8 object WebSocketProtocol { /** Magic value which must be appended to the key in a response header. */ internal const val ACCEPT_MAGIC = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11" /* Each frame starts with two bytes of data. 0 1 2 3 4 5 6 7 0 1 2 3 4 5 6 7
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
* @param chain the existing filter chain * @return a new filter chain with the filter appended */ protected FilterChain appendFilterChain(final Filter filter, final FilterChain chain) { return query -> filter.parse(query, chain); } /** * Creates the default filter chain that performs the actual query parsing.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
* @param chain the existing filter chain to append to * @return a new filter chain that includes the appended filter */ protected FilterChain appendFilterChain(final Filter filter, final FilterChain chain) { return (context, query, boost) -> filter.execute(context, query, boost, chain); } /** * Creates the default filter chain that executes query commands.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlService.java
/** Value indicating children should be merged based on element names */ public static final String CHILDREN_COMBINATION_MERGE = "merge"; /** Value indicating children should be appended as siblings */ public static final String CHILDREN_COMBINATION_APPEND = "append"; /** * Default mode for combining children DOMs during merge. * When element names match, the process will try to merge the element data,
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameQueryResponseTest.java
addrEntryField.setAccessible(true); addrEntryField.set(nameQueryResponse, null); // The toString method appends to super.toString(). We'll check the appended part. String expectedEnd = ",addrEntry=]"; String actual = nameQueryResponse.toString();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
cmd/metrics-v3.go
// // These are paths under the top-level /minio/metrics/v3 metrics endpoint. Each // of these paths returns a set of V3 metrics. // // Per-bucket metrics endpoints always start with /bucket and the bucket name is // appended to the path. e.g. if the collector path is /bucket/api, the endpoint // for the bucket "mybucket" would be /minio/metrics/v3/bucket/api/mybucket const ( apiRequestsCollectorPath collectorPath = "/api/requests"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 02 00:55:27 UTC 2024 - 13.6K bytes - Viewed (0)