- Sort Score
- Result 10 results
- Languages All
Results 1481 - 1490 of 3,687 for PRIVATE (0.05 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java
return gen.order(new ArrayList<E>(new LinkedHashSet<E>(insertionOrder))); } } private static final class EntrySetGenerator<E> implements TestSetGenerator<Multiset.Entry<E>> { final OneSizeTestContainerGenerator<Collection<E>, E> gen; private EntrySetGenerator(OneSizeTestContainerGenerator<Collection<E>, E> gen) { this.gen = gen; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponseTest.java
import jcifs.internal.smb1.trans.SmbComTransaction; /** * Unit tests for Trans2QueryPathInformationResponse class */ class Trans2QueryPathInformationResponseTest { @Mock private Configuration mockConfig; private Trans2QueryPathInformationResponse response; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java
import static org.junit.jupiter.api.Assertions.assertSame; import static org.junit.jupiter.api.Assertions.assertTrue; @PlexusTest @Deprecated class MirrorProcessorTest { @Inject private DefaultMirrorSelector mirrorSelector; @Inject private ArtifactRepositoryFactory repositorySystem; @Test void testExternalURL() { assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://somehost")));
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt
lateinit var tempDir: File @StartStop val server = MockWebServer() @StartStop val server2 = MockWebServer() private val handshakeCertificates = platform.localhostHandshakeCertificates() private var client = clientTestRule.newClient() private var cache: Cache? = null @BeforeEach fun setUp() { server.protocolNegotiationEnabled = false } @AfterEach
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 133.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java
/** * Test class for Smb2OplockBreakNotification functionality */ @DisplayName("Smb2OplockBreakNotification Tests") class Smb2OplockBreakNotificationTest extends BaseTest { private Configuration mockConfig; private Smb2OplockBreakNotification notification; @BeforeEach void setUp() { mockConfig = mock(Configuration.class); notification = new Smb2OplockBreakNotification(mockConfig); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java
import java.util.List; import org.junit.Before; import org.junit.Test; import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken; public class SuggestAnalyzerTest { private SuggestAnalyzer analyzer; private TestSuggestAnalyzer testAnalyzer; @Before public void setUp() { testAnalyzer = new TestSuggestAnalyzer(); analyzer = testAnalyzer; } @Test
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 15.7K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Test DefaultArtifactVersion. * */ class DefaultArtifactVersionTest { private ArtifactVersion newArtifactVersion(String version) { return new DefaultArtifactVersion(version); } private void checkVersionParsing( String version, int major, int minor, int incremental, int buildnumber, String qualifier) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java
/** * DefaultMirrorSelector */ @Named @Singleton @Deprecated public class DefaultMirrorSelector implements MirrorSelector { private static final String WILDCARD = "*"; private static final String EXTERNAL_WILDCARD = "external:*"; private static final String EXTERNAL_HTTP_WILDCARD = "external:http:*"; @Override public Mirror getMirror(ArtifactRepository repository, List<Mirror> mirrors) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Monitor.java
* use {@code signal()} instead of {@code signalAll()}, which may be a performance benefit. * * {@snippet : * public class SafeBox<V> { * private V value; * private final ReentrantLock lock = new ReentrantLock(); * private final Condition valuePresent = lock.newCondition(); * private final Condition valueAbsent = lock.newCondition(); * * public V get() throws InterruptedException { * lock.lock(); * try {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 42.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSetMultimap.java
public ImmutableSet<Entry<K, V>> entries() { ImmutableSet<Entry<K, V>> result = entries; return result == null ? (entries = new EntrySet<>(this)) : result; } private static final class EntrySet<K, V> extends ImmutableSet<Entry<K, V>> { @Weak private final transient ImmutableSetMultimap<K, V> multimap; EntrySet(ImmutableSetMultimap<K, V> multimap) { this.multimap = multimap; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.8K bytes - Viewed (0)