- Sort Score
- Result 10 results
- Languages All
Results 1611 - 1620 of 3,706 for private (0.04 sec)
-
src/test/java/jcifs/smb1/smb1/SmbComTransactionTest.java
* Unit tests for SmbComTransaction class */ class SmbComTransactionTest { private TestSmbComTransaction transaction; // Test implementation of abstract SmbComTransaction static class TestSmbComTransaction extends SmbComTransaction { private int setupBytesWritten = 2; private int parameterBytesWritten = 20; private int dataBytesWritten = 50; @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/WebApiUtilTest.java
} public void test_constructor_isPrivate() { // Verify that WebApiUtil has a private constructor (utility class pattern) try { Constructor<WebApiUtil> constructor = WebApiUtil.class.getDeclaredConstructor(); assertTrue("Constructor should be private", java.lang.reflect.Modifier.isPrivate(constructor.getModifiers())); // Test that constructor is accessible when made accessible
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 17.1K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/UppercaseRequestInterceptor.kt
@Throws(IOException::class) override fun intercept(chain: Chain): Response = chain.proceed(uppercaseRequest(chain.request())) /** Returns a request that transforms `request` to be all uppercase. */ private fun uppercaseRequest(request: Request): Request { val uppercaseBody: RequestBody = object : ForwardingRequestBody(request.body) { @Throws(IOException::class) override fun writeTo(sink: BufferedSink) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 1.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/StandardMutableUndirectedGraphTest.java
{false, ElementOrder.unordered()}, {true, ElementOrder.unordered()}, {false, ElementOrder.stable()}, {true, ElementOrder.stable()}, }); } private final boolean allowsSelfLoops; private final ElementOrder<Integer> incidentEdgeOrder; public StandardMutableUndirectedGraphTest( boolean allowsSelfLoops, ElementOrder<Integer> incidentEdgeOrder) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/JdkBackedImmutableSet.java
* flooding. This implementation is never used on the GWT client side. * * @author Louis Wasserman */ @GwtIncompatible final class JdkBackedImmutableSet<E> extends IndexedImmutableSet<E> { private final Set<?> delegate; private final ImmutableList<E> delegateList; JdkBackedImmutableSet(Set<?> delegate, ImmutableList<E> delegateList) { this.delegate = delegate; this.delegateList = delegateList; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 01 22:23:20 UTC 2025 - 1.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/execution/DefaultRuntimeInformation.java
* */ @Deprecated @Named @Singleton public class DefaultRuntimeInformation implements RuntimeInformation, Initializable { @Inject private org.apache.maven.rtinfo.RuntimeInformation rtInfo; private ArtifactVersion applicationVersion; @Override public ArtifactVersion getApplicationVersion() { return applicationVersion; } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ChildUrlsException.java
* representing the child URLs that caused the exception. * */ public class ChildUrlsException extends CrawlerSystemException { private static final long serialVersionUID = 1L; /** * The list of child URLs. */ private final Set<RequestData> childUrlList; /** * Creates a new instance of ChildUrlsException. * @param childUrlList The list of child URLs.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/ExecutionListTest.java
/** * Unit tests for {@link ExecutionList}. * * @author Nishant Thakkar * @author Sven Mawson */ @NullUnmarked public class ExecutionListTest extends TestCase { private final ExecutionList list = new ExecutionList(); public void testRunOnPopulatedList() throws Exception { Executor exec = newCachedThreadPool(); CountDownLatch countDownLatch = new CountDownLatch(3);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcSamrConnect2Test.java
import jcifs.dcerpc.DcerpcConstants; import jcifs.dcerpc.DcerpcMessage; @DisplayName("MsrpcSamrConnect2 Tests") public class MsrpcSamrConnect2Test { private SamrPolicyHandle mockPolicyHandle; private String testServer; private int testAccess; @BeforeEach void setUp() { mockPolicyHandle = mock(SamrPolicyHandle.class); testServer = "testServer";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderRequest.java
session, trace, installationToolchainsSource, userToolchainsSource); } private static class DefaultToolchainsBuilderRequest extends BaseRequest<ProtoSession> implements ToolchainsBuilderRequest { private final Source installationToolchainsSource; private final Source userToolchainsSource; @SuppressWarnings("checkstyle:ParameterNumber")
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 6.3K bytes - Viewed (0)