- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 865 for Number (0.05 sec)
-
src/main/java/jcifs/internal/dfs/DfsReferralResponseBuffer.java
private int tflags; private Referral[] referrals; /** * Get the number of characters consumed from the path * * @return the pathConsumed */ public final int getPathConsumed() { return this.pathConsumed; } /** * Get the number of referrals in the response * * @return the numReferrals */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/AbstractBaseGraph.java
* @param <N> Node parameter type */ abstract class AbstractBaseGraph<N> implements BaseGraph<N> { /** * Returns the number of edges in this graph; used to calculate the size of {@link Graph#edges()}. * This implementation requires O(|N|) time. Classes extending this one may manually keep track of * the number of edges as the graph is updated, and override this method for better performance. */ protected long edgeCount() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.2K bytes - Viewed (0) -
guava/src/com/google/common/base/Ticker.java
* the License. */ package com.google.common.base; import com.google.common.annotations.GwtCompatible; /** * A time source; returns a time value representing the number of nanoseconds elapsed since some * fixed but arbitrary point in time. Note that most users should use {@link Stopwatch} instead of * interacting with this class directly. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessVersion.java
*/ public int getValue() { return version; } /** * Gets the major version number. * * @return the major version */ public int getMajorVersion() { return (version >> 16) & 0xFFFF; } /** * Gets the minor version number. * * @return the minor version */ public int getMinorVersion() { return version & 0xFFFF;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ArrayTable.java
* contains a mapping for every row key / column pair. The value corresponding to a given row and * column is null unless another value is provided. * * <p>The table's size is constant: the product of the number of supplied row keys and the number of * supplied column keys. The {@code remove} and {@code clear} methods are not supported by the table * or its views. The {@link #erase} and {@link #eraseAll} methods may be used instead. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 19:39:21 UTC 2025 - 26.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/FunctionsTest.java
Map<String, Integer> map = new HashMap<>(); map.put("One", 1); map.put("Three", 3); Number number = Double.valueOf(42); Function<String, Number> function = Functions.forMap(map, number); assertEquals(1, function.apply("One").intValue()); assertEquals(number, function.apply("Two")); assertEquals(3L, function.apply("Three").longValue()); } public void testComposition() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 15.9K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/ClassIteratorTest.java
assertThat(it.hasNext(), is(true)); assertThat(it.next(), is(sameClass(Integer.class))); assertThat(it.hasNext(), is(true)); assertThat(it.next(), is(sameClass(Number.class))); assertThat(it.hasNext(), is(true)); assertThat(it.next(), is(sameClass(Object.class))); assertThat(it.hasNext(), is(not(true))); } /** * @throws Exception
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Authenticator.kt
* or both. * * ## Authentication Retries * * If your authentication may be flaky and requires retries you should apply some policy * to limit the retries by the class of errors and number of attempts. To get the number of * attempts to the current point use this function. * * ```java * private int responseCount(Response response) { * int result = 1;
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcMessage.java
this.result = buf.dec_ndr_long(); } else { /* Bind_ack or Response */ decode_out(buf); } } /** * Get the operation number for this DCERPC message. * @return the operation number */ public abstract int getOpnum(); /** * Encode the input parameters for this DCERPC message. * @param buf the buffer to encode into
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
* @return number of bytes written */ protected abstract int writeBytesWireFormat(byte[] dst, int dstIndex); /** * Reads the message body from the wire format. * * @param buffer the buffer to read from * @param bufferIndex the starting position in the buffer * @return number of bytes read
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0)