- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 435 for rest (0.01 sec)
-
android/guava/src/com/google/common/collect/Lists.java
implements Serializable, RandomAccess { @ParametricNullness final E first; final E[] rest; OnePlusArrayList(@ParametricNullness E first, E[] rest) { this.first = first; this.rest = checkNotNull(rest); } @Override public int size() { return IntMath.saturatedAdd(rest.length, 1); } @Override @ParametricNullness public E get(int index) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 42.2K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/ImmutableLongArray.java
* * <p>The array {@code rest} must not be longer than {@code Integer.MAX_VALUE - 1}. */ // Use (first, rest) so that `of(someLongArray)` won't compile (they should use copyOf), which is // okay since we have to copy the just-created array anyway. public static ImmutableLongArray of(long first, long... rest) { checkArgument(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 22K bytes - Viewed (0) -
guava/src/com/google/common/primitives/ImmutableIntArray.java
* * <p>The array {@code rest} must not be longer than {@code Integer.MAX_VALUE - 1}. */ // Use (first, rest) so that `of(someIntArray)` won't compile (they should use copyOf), which is // okay since we have to copy the just-created array anyway. public static ImmutableIntArray of(int first, int... rest) { checkArgument(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 21.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/EquivalenceTester.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 4.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/JoinerTest.java
if (num >= 0) { Object[] rest = new Integer[num]; for (int i = 0; i < num; i++) { rest[i] = partsArray[i + 2]; } assertEquals(expected, joiner.join(partsArray[0], partsArray[1], rest)); StringBuilder sb3 = new StringBuilder().append('x'); joiner.appendTo(sb3, partsArray[0], partsArray[1], rest); assertEquals("x" + expected, sb3.toString()); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/CreateBody.java
*/ package org.codelibs.fess.app.web.api.admin.duplicatehost; import org.codelibs.fess.app.web.admin.duplicatehost.CreateForm; /** * Request body for creating duplicate host via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */ public CreateBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1019 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/CreateBody.java
*/ package org.codelibs.fess.app.web.api.admin.fileauth; import org.codelibs.fess.app.web.admin.fileauth.CreateForm; /** * Request body for creating file authentication via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */ public CreateBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1014 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/CreateBody.java
*/ package org.codelibs.fess.app.web.api.admin.pathmap; import org.codelibs.fess.app.web.admin.pathmap.CreateForm; /** * Request body for creating path mapping via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */ public CreateBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1004 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/user/CreateBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.user; import org.codelibs.fess.app.web.admin.user.CreateForm; /** * Request body for creating user via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */ public CreateBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 990 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/CreateBody.java
*/ package org.codelibs.fess.app.web.api.admin.webauth; import org.codelibs.fess.app.web.admin.webauth.CreateForm; /** * Request body for creating web authentication via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */ public CreateBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1011 bytes - Viewed (0)