- Sort Score
- Result 10 results
- Languages All
Results 2041 - 2050 of 3,507 for INT (0.04 sec)
-
android/guava/src/com/google/common/graph/DirectedMultiNetworkConnections.java
* @param <E> Edge parameter type */ final class DirectedMultiNetworkConnections<N, E> extends AbstractDirectedNetworkConnections<N, E> { private DirectedMultiNetworkConnections( Map<E, N> inEdges, Map<E, N> outEdges, int selfLoopCount) { super(inEdges, outEdges, selfLoopCount); } static <N, E> DirectedMultiNetworkConnections<N, E> of() { return new DirectedMultiNetworkConnections<>(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/escape/testing/EscaperAsserts.java
* @param escaper the non-null escaper to test * @param expected the expected output string * @param cp the Unicode code point to escape */ public static void assertEscaping(UnicodeEscaper escaper, String expected, int cp) { String escaped = computeReplacement(escaper, cp); Assert.assertNotNull(escaped); Assert.assertEquals(expected, escaped); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jan 18 20:55:09 UTC 2022 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbShareInfoTest.java
/** * Test of getAttributes method, of class SmbShareInfo. */ @Test void testGetAttributes() { SmbShareInfo instance = new SmbShareInfo(); int expResult = SmbFile.ATTR_READONLY | SmbFile.ATTR_DIRECTORY; int result = instance.getAttributes(); assertEquals(expResult, result); } /** * Test of createTime method, of class SmbShareInfo. */ @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5K bytes - Viewed (0) -
guava/src/com/google/common/graph/DirectedMultiNetworkConnections.java
* @param <E> Edge parameter type */ final class DirectedMultiNetworkConnections<N, E> extends AbstractDirectedNetworkConnections<N, E> { private DirectedMultiNetworkConnections( Map<E, N> inEdges, Map<E, N> outEdges, int selfLoopCount) { super(inEdges, outEdges, selfLoopCount); } static <N, E> DirectedMultiNetworkConnections<N, E> of() { return new DirectedMultiNetworkConnections<>(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SSPContext.java
* @return result token * @throws SmbException if an SMB protocol error occurs * @throws CIFSException if a general CIFS error occurs */ byte[] initSecContext(byte[] token, int off, int len) throws CIFSException; /** * Gets the NetBIOS name of the remote endpoint. * @return the name of the remote endpoint */ String getNetbiosName(); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
final String fullPath = "\\" + loc.getServer() + "\\" + loc.getShare() + loc.getUNCPath(); final int maxRetries = this.ctx.getConfig().getMaxRequestRetries(); for (int retries = 1; retries <= maxRetries; retries++) { if (rpath != null) { rpath.setFullUNCPath(null, null, fullPath); } try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java
*/ public class HandleReconnector { private static final Logger log = LoggerFactory.getLogger(HandleReconnector.class); private final PersistentHandleManager handleManager; private final int maxRetries; private final long retryDelay; /** * Create a new handle reconnector * @param manager the persistent handle manager */ public HandleReconnector(PersistentHandleManager manager) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 8.5K bytes - Viewed (1) -
guava-testlib/src/com/google/common/collect/testing/testers/ListRemoveAtIndexTester.java
import java.util.ConcurrentModificationException; import java.util.Iterator; import java.util.List; import org.junit.Ignore; /** * A generic JUnit test which tests {@code remove(int)} operations on a list. Can't be invoked * directly; please see {@link com.google.common.collect.testing.ListTestSuiteBuilder}. * * @author Chris Povirk */ @GwtCompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 4K bytes - Viewed (0) -
guava/src/com/google/common/base/Objects.java
* * <p>This is useful for implementing {@link Object#hashCode()}. For example, in an object that * has three properties, {@code x}, {@code y}, and {@code z}, one could write: * * {@snippet : * public int hashCode() { * return Objects.hashCode(getX(), getY(), getZ()); * } * } * * <p><b>Warning:</b> When a single object is supplied, the returned hash code does not equal the * hash code of that object.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 28 22:51:26 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessUnregisterMessage.java
// Pad with zeros if context handle is shorter than 20 bytes for (int i = contextHandle.length; i < 20; i++) { buf.enc_ndr_small(0); } } else { // Write 20 zero bytes for null context handle for (int i = 0; i < 20; i++) { buf.enc_ndr_small(0); } } } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 3.8K bytes - Viewed (0)