- Sort Score
- Result 10 results
- Languages All
Results 771 - 780 of 3,706 for private (0.37 sec)
-
guava/src/com/google/common/base/Enums.java
checkNotNull(enumClass); checkNotNull(value); return Platform.getEnumIfPresent(enumClass, value); } private static final Map<Class<? extends Enum<?>>, Map<String, WeakReference<? extends Enum<?>>>> enumConstantCache = new WeakHashMap<>(); private static <T extends Enum<T>> Map<String, WeakReference<? extends Enum<?>>> populateCache( Class<T> enumClass) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 01 13:41:58 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileFsSizeInformation.java
* sectors per allocation unit, and bytes per sector for a file system volume. */ public class FileFsSizeInformation implements AllocInfo { private long alloc; // Also handles SmbQueryFSSizeInfo private long free; private int sectPerAlloc; private int bytesPerSect; /** * Default constructor for decoding file system size information. */ public FileFsSizeInformation() { }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessHeartbeatResponse.java
/** * Creates a new witness heartbeat response. */ public WitnessHeartbeatResponse() { // Default constructor } private long sequenceNumber; private int returnCode; private long recommendedHeartbeatInterval; private String error; /** * Checks if the heartbeat was successful. * * @return true if successful */ public boolean isSuccess() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegisterResponse.java
/** * Creates a new witness register response. */ public WitnessRegisterResponse() { // Default constructor } private String registrationId; private int returnCode; private byte[] contextHandle; private String error; /** * Checks if the registration was successful. * * @return true if successful */ public boolean isSuccess() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaProvider.java
// Default constructor } private static final Logger log = LoggerFactory.getLogger(DisniRdmaProvider.class); // DiSNI components - these would be actual DiSNI objects in a real implementation private Object endpointGroup; // RdmaActiveEndpointGroup<DisniRdmaEndpoint> private Object endpoint; // RdmaActiveEndpoint private boolean initialized = false; @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/DfsImplTest.java
import jcifs.Credentials; import jcifs.SmbTransportPool; import jcifs.internal.dfs.DfsReferralDataInternal; class DfsImplTest { private DfsImpl dfsImpl; private CIFSContext mockContext; private Configuration mockConfig; private Credentials mockCredentials; private SmbTransportPool mockTransportPool; @BeforeEach void setUp() throws IOException { // Mock the CIFSContext and its dependencies
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.5K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/DirectedGraphConnections.java
* not have been inserted consecutively. */ private final @Nullable List<NodeConnection<N>> orderedNodeConnections; private int predecessorCount; private int successorCount; private DirectedGraphConnections( Map<N, Object> adjacentNodeValues, @Nullable List<NodeConnection<N>> orderedNodeConnections,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
*/ private final Object domainsLock = new Object(); private final Map<String, CacheEntry<DfsReferralDataInternal>> dcCache = new HashMap<>(); private final Object dcLock = new Object(); private CacheEntry<DfsReferralDataInternal> referrals = null; private final Object referralsLock = new Object(); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/ImmutableLongArray.java
private final int end; // exclusive private ImmutableLongArray(long[] array) { this(array, 0, array.length); } private ImmutableLongArray(long[] array, int start, int end) { this.array = array; this.start = start; this.end = end; } /** Returns the number of values in this array. */ public int length() { return end - start; }
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
private final int end; // exclusive private ImmutableIntArray(int[] array) { this(array, 0, array.length); } private ImmutableIntArray(int[] array, int start, int end) { this.array = array; this.start = start; this.end = end; } /** Returns the number of values in this array. */ public int length() { return end - start; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 21.4K bytes - Viewed (0)