- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 354 for represented (0.14 sec)
-
guava/src/com/google/common/util/concurrent/Striped.java
return hash & mask; } @Override public final L get(Object key) { return getAt(indexFor(key)); } } /** * Implementation of Striped where 2^k stripes are represented as an array of the same length, * eagerly initialized. */ private static final class CompactStriped<L> extends PowerOfTwoStriped<L> { /** Size is a power of two. */ private final Object[] array;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/jcifs/SID.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs; /** * A Windows SID is a numeric identifier used to represent Windows * accounts. SIDs are commonly represented using a textual format such as * <code>S-1-5-21-1496946806-2192648263-3843101252-1029</code> but they may * also be resolved to yield the name of the associated Windows account
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
return new ApiResult(this); } } /** * Represents an API response containing a list of backup files. */ public static class ApiBackupFilesResponse extends ApiResponse { /** * The list of backup files, where each file is represented by a map of strings. */ protected List<Map<String, String>> files; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
guava/src/com/google/common/math/ToDoubleRounder.java
? Double.POSITIVE_INFINITY : -Double.MAX_VALUE; case UP: return roundArbitrarily; case UNNECESSARY: throw new ArithmeticException(x + " cannot be represented precisely as a double"); } } X roundArbitrarilyAsX = toX(roundArbitrarily, RoundingMode.UNNECESSARY); int cmpXToRoundArbitrarily = x.compareTo(roundArbitrarilyAsX); switch (mode) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
* Tests to see if the file this <code>SmbResource</code> represents is not a directory. * * @return <code>true</code> if this <code>SmbResource</code> is not a directory * @throws CIFSException if an error occurs accessing the resource */ boolean isFile() throws CIFSException; /** * Tests to see if the file this <code>SmbResource</code> represents is a directory. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 28K bytes - Viewed (1) -
api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java
@Nonnull Version getVersion(); /** * {@return the version or meta-version of the artifact}. * A meta-version is a version suffixed with the {@code SNAPSHOT} keyword. * Meta-versions are represented in a base version by their symbols (e.g., {@code SNAPSHOT}), * while they are replaced by, for example, the actual timestamp in the {@linkplain #getVersion() version}. */ @Nonnull Version getBaseVersion();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 4.6K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedInts.java
*/ public static int remainder(int dividend, int divisor) { return (int) (toLong(dividend) % toLong(divisor)); } /** * Returns the unsigned {@code int} value represented by the given string. * * <p>Accepts a decimal, hexadecimal, or octal number given by specifying the following prefix: * * <ul> * <li>{@code 0x}<i>HexDigits</i>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Feb 09 16:22:33 UTC 2025 - 13.8K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Ints.java
private Ints() {} /** * The number of bytes required to represent a primitive {@code int} value. * * <p>Prefer {@link Integer#BYTES} instead. */ // The constants value gets inlined here. @SuppressWarnings("AndroidJdkLibsChecker") public static final int BYTES = Integer.BYTES; /** * The largest power of two that can be represented as an {@code int}. * * @since 10.0 */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 31.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
* * @author higa */ public abstract class MethodUtil { /** * Do not instantiate. */ protected MethodUtil() { } /** * Invokes the underlying method represented by the {@link Method} object, with the specified object and parameters. * * @param <T> * The return type of the method * @param method * The method. Cannot be {@literal null}
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
import jcifs.dcerpc.rpc; import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * Internal representation of SIDs * * A Windows SID is a numeric identifier used to represent Windows * accounts. SIDs are commonly represented using a textual format such as * {@code S-1-5-21-1496946806-2192648263-3843101252-1029} but they may * also be resolved to yield the name of the associated Windows account
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0)