- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 923 for arra (0.01 sec)
-
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
} /** * Simplifies the array. * * @param values The array. * @return The simplified array. */ protected static String[] simplifyArray(final String[] values) { return stream(values).get(stream -> stream.filter(StringUtil::isNotBlank).distinct().toArray(n -> new String[n])); } /** * Returns the parameter value array. * * @param request The request.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/MultiIterator.java
/** Array of {@link Iterator}s. */ protected final Iterator<E>[] iterators; /** Index of the currently iterated {@link Iterator}. */ protected int index; /** * Returns an {@link Iterable} that wraps a {@link MultiIterator} for use in a for-each statement. * * @param <E> the element type * @param iterables the array of {@link Iterable} (must not be {@literal null})
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java
} /** * Returns a {@link CopyOptions} with the specified property names to include in the operation. * * @param propertyNames * An array of property names. Must not be {@literal null} or an empty array. * @return A {@link CopyOptions} with the specified property names to include in the operation. * @see CopyOptions#include(CharSequence...) */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.6K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
} override fun getSupportedCipherSuites(): Array<String> = delegate!!.supportedCipherSuites override fun getEnabledCipherSuites(): Array<String> = delegate!!.enabledCipherSuites override fun setEnabledCipherSuites(suites: Array<String>) { delegate!!.enabledCipherSuites = suites } override fun getSupportedProtocols(): Array<String> = delegate!!.supportedProtocols
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/io/ContentCache.java
/** * A byte array that holds the cached content data. */ private final byte[] data; /** * The file that is used to cache the content. */ private final File file; /** * Constructs a ContentCache with the given byte array data. * * @param data the byte array containing the content */
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
} /** * Converts an array of {@literal CharSequence} to a {@literal List} of {@literal String}. * * @param array * An array of {@literal CharSequence} * @return A {@literal List} of {@literal String} */ protected static List<String> toStringList(final CharSequence[] array) { final List<String> list = newArrayList(array.length);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 17.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/UnmodifiableListIteratorTest.java
String[] array = {"a", "b", "c"}; return new UnmodifiableListIterator<String>() { int i; @Override public boolean hasNext() { return i < array.length; } @Override public String next() { if (!hasNext()) { throw new NoSuchElementException(); } return array[i++]; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 2.8K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Strings.java
throw new ArrayIndexOutOfBoundsException("Required array size too large: " + longSize); } char[] array = new char[size]; string.getChars(0, len, array, 0); int n; for (n = len; n < size - n; n <<= 1) { System.arraycopy(array, 0, array, n, n); } System.arraycopy(array, 0, array, n, size - n); return new String(array); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 27 17:53:41 UTC 2025 - 12.2K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/HashCode.java
return hash == that.asLong(); } private static final long serialVersionUID = 0; } /** * Creates a {@code HashCode} from a byte array. The array is defensively copied to preserve the * immutability contract of {@code HashCode}. The array cannot be empty. * * @since 15.0 (since 12.0 in HashCodes) */ public static HashCode fromBytes(byte[] bytes) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 12.6K bytes - Viewed (0) -
docs/es/docs/features.md
Todo el framework **FastAPI** está basado para satisfacer eso. El autocompletado funciona en todas partes. Rara vez necesitarás regresar a la documentación. Aquí está cómo tu editor podría ayudarte: * en <a href="https://code.visualstudio.com/" class="external-link" target="_blank">Visual Studio Code</a>:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 17:46:44 UTC 2024 - 10.4K bytes - Viewed (0)