- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 2,192 for PRIVATE (0.04 sec)
-
src/main/java/jcifs/util/SmbCircuitBreaker.java
private final List<CircuitBreakerListener> listeners = new CopyOnWriteArrayList<>(); // Configuration private volatile int failureThreshold; private final int successThreshold; private final long resetTimeoutMillis; private final long halfOpenMaxAttempts; private final AtomicInteger halfOpenAttempts = new AtomicInteger(0); // Dynamic threshold adjustment private final boolean dynamicThresholdEnabled;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
private int nextEntryOffset; private int fileIndex; private long creationTime; private long lastAccessTime; private long lastWriteTime; private long changeTime; private long endOfFile; private long allocationSize; private int extFileAttributes; private int eaSize; private String shortName; private String filename;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/netbios/UniAddressTest.java
} } @Nested @DisplayName("hashCode and equals tests") class HashCodeAndEqualsTests { private InetAddress inetAddress1; private InetAddress inetAddress2; private NbtAddress nbtAddress1; private NbtAddress nbtAddress2; @BeforeEach void setup() throws UnknownHostException { inetAddress1 = InetAddress.getByName("192.168.1.1");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/NetServerEnumIterator.java
private static final Logger log = LoggerFactory.getLogger(NetServerEnumIterator.class); private final NetServerEnum2 request; private final NetServerEnum2Response response; private final SmbResource parent; private final SmbTreeHandleImpl treeHandle; private final ResourceNameFilter nameFilter; private final boolean workgroup; private int ridx; private FileEntry next;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
private static final Object[] EMPTY_ARGS = new Object[0]; private final String propertyName; private final Class<?> propertyType; private Method readMethod; private Method writeMethod; private Field field; private final BeanDesc beanDesc; private Constructor<?> stringConstructor; private Method valueOfMethod;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb3KeyDerivation.java
public final class Smb3KeyDerivation { private static final byte[] SIGNCONTEXT_300 = toCBytes("SmbSign"); private static final byte[] SIGNLABEL_300 = toCBytes("SMB2AESCMAC"); private static final byte[] SIGNLABEL_311 = toCBytes("SMBSigningKey"); private static final byte[] APPCONTEXT_300 = toCBytes("SmbRpc"); private static final byte[] APPLABEL_300 = toCBytes("SMB2APP");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java
// Test implementation of SsoAuthenticator for testing private static class TestSsoAuthenticator implements SsoAuthenticator { private LoginCredential loginCredential; private FessLoginAssist.LoginCredentialResolver lastResolver; private boolean resolverCalled = false; private Map<SsoResponseType, ActionResponse> responseMap = new HashMap<>(); private String logoutUrl;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java
return description; } } private Target empty; private Target disjoint; private Target superset; private Target nonEmptyProperSubset; private Target sameElements; private Target partialOverlap; private Target containsDuplicates; private Target nullSingleton; @Override public void setUp() throws Exception { super.setUp();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureCredentialStorage.java
private static final Logger log = LoggerFactory.getLogger(SecureCredentialStorage.class); private static final String ENCRYPTION_ALGORITHM = "AES/GCM/NoPadding"; private static final String KEY_ALGORITHM = "AES"; private static final String KEY_DERIVATION_ALGORITHM = "PBKDF2WithHmacSHA256"; private static final int KEY_SIZE = 256; private static final int GCM_TAG_SIZE = 128;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/Exchange.kt
} /** A request body that fires events when it completes. */ private inner class RequestBodySink( delegate: Sink, /** The exact number of bytes to be written, or -1L if that is unknown. */ private val contentLength: Long, ) : ForwardingSink(delegate) { private var completed = false private var bytesReceived = 0L private var closed = false @Throws(IOException::class)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 29 22:04:11 UTC 2025 - 9.7K bytes - Viewed (0)