- Sort Score
- Result 10 results
- Languages All
Results 701 - 710 of 3,691 for Private (0.06 sec)
-
android/guava/src/com/google/common/collect/TableCollectors.java
} } @IgnoreJRERequirement // see enclosing class (whose annotation Animal Sniffer ignores here...) private static final class MutableCell<R, C, V> extends AbstractCell<R, C, V> { private final R row; private final C column; private V value; MutableCell(R row, C column, V value) { this.row = checkNotNull(row, "row"); this.column = checkNotNull(column, "column");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:07:06 UTC 2025 - 7.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/AutobahnTester.kt
import okio.ByteString /** * Exercises the web socket implementation against the * [Autobahn Testsuite](http://autobahn.ws/testsuite/). */ class AutobahnTester { val client = OkHttpClient() private fun newWebSocket( path: String, listener: WebSocketListener, ): WebSocket { val request = Request .Builder() .url(HOST + path) .build()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthentication.java
* included only if it's greater than 0. If the server is not set, the path * prefix will be "smb://". * </p> */ public class SmbAuthentication { private String server; private int port; private String username; private String password; private String domain; /** * Creates a new SmbAuthentication instance. */ public SmbAuthentication() { super(); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/unit/TestSystemProperties.java
*/ public class TestSystemProperties extends DynamicProperties { private static final Logger logger = LoggerFactory.getLogger(TestSystemProperties.class); public TestSystemProperties() { // Create a temporary file to satisfy DynamicProperties constructor super(createTempFile()); loadTestProperties(); } private static File createTempFile() { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 2.5K bytes - Viewed (0) -
guava/src/com/google/common/base/MoreObjects.java
*/ public static final class ToStringHelper { private final String className; private final ValueHolder holderHead = new ValueHolder(); private ValueHolder holderTail = holderHead; private boolean omitNullValues = false; private boolean omitEmptyValues = false; /** Use {@link MoreObjects#toStringHelper(Object)} to create an instance. */ private ToStringHelper(String className) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 16.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumResponseTest.java
} // Helper methods using reflection to access private fields private int getStatus(NetShareEnumResponse response) throws Exception { Field field = getSuperclassField(response.getClass(), "status"); field.setAccessible(true); return field.getInt(response); } private void setStatus(NetShareEnumResponse response, int value) throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
class SmbComNtTransactionTest { @Mock private Configuration mockConfig; private TestSmbComNtTransaction transaction; /** * Test implementation of SmbComNtTransaction for testing purposes */ public static class TestSmbComNtTransaction extends SmbComNtTransaction { private int setupWireFormatReturn = 0; private int parametersWireFormatReturn = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponseTest.java
} // Helper methods to write numbers to byte array in little-endian format. private void writeInt2(int val, byte[] dst, int dstIndex) { dst[dstIndex++] = (byte) val; dst[dstIndex++] = (byte) (val >> 8); } private void writeInt4(int val, byte[] dst, int dstIndex) { dst[dstIndex++] = (byte) val; dst[dstIndex++] = (byte) (val >> 8);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.6K bytes - Viewed (0) -
okcurl/src/main/kotlin/okhttp3/curl/internal/-MainCommon.kt
request.header(parts[0], parts[1]) } } referer?.let { request.header("Referer", it) } request.header("User-Agent", userAgent) return request.build() } private fun Main.mediaType(): MediaType? { val mimeType = headers?.let { for (header in it) { val parts = header.split(':', limit = 2) if ("Content-Type".equals(parts[0], ignoreCase = true)) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/SamrAliasHandle.java
* operations for managing alias membership and properties. */ public class SamrAliasHandle extends rpc.policy_handle implements AutoCloseable { private final DcerpcHandle handle; private boolean opened; /** * Creates a new SAM alias handle. * * @param handle the DCE/RPC handle for communication * @param domainHandle the domain handle containing this alias
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0)