- Sort Score
- Result 10 results
- Languages All
Results 771 - 780 of 5,228 for newE (0.02 sec)
-
android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java
// io types .put(InputStream.class, new ByteArrayInputStream(new byte[0])) .put(ByteArrayInputStream.class, new ByteArrayInputStream(new byte[0])) .put(Readable.class, new StringReader("")) .put(Reader.class, new StringReader("")) .put(StringReader.class, new StringReader("")) .put(Buffer.class, ByteBuffer.allocate(0))Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 23 17:50:58 UTC 2025 - 20.9K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/GcFinalizationTest.java
public void testAwaitClear() { WeakReference<Object> ref = new WeakReference<>(new Object()); GcFinalization.awaitClear(ref); assertThat(ref.get()).isNull(); } public void testAwaitDone_finalizationPredicate() { WeakHashMap<Object, Object> map = new WeakHashMap<>(); map.put(new Object(), Boolean.TRUE); GcFinalization.awaitDone( new FinalizationPredicate() { @Override
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Dec 08 17:02:07 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/netbios/LmhostsTest.java
// Modify file with a delay to ensure different lastModified time Thread.sleep(100); try (FileWriter writer = new FileWriter(lmhostsFile)) { writer.write("192.168.1.200 NEWHOST\n"); } // Should reload file and find new host result = lmhosts.getByName("NEWHOST", mockContext); assertNotNull(result); // Old host should not be foundRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.2K bytes - Viewed (0) -
src/test/java/jcifs/http/NetworkExplorerTest.java
@BeforeEach void setUp() throws Exception { // Setup response writers stringWriter = new StringWriter(); printWriter = new PrintWriter(stringWriter); outputStream = new ByteArrayOutputStream(); servletOutputStream = new ServletOutputStream() { @Override public void write(int b) throws IOException { outputStream.write(b);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 21.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Context.java
static { KRB5_MECH_OID = new ASN1ObjectIdentifier("1.2.840.113554.1.2.2"); KRB5_MS_MECH_OID = new ASN1ObjectIdentifier("1.2.840.48018.1.2.2"); SUPPORTED_MECHS = new ASN1ObjectIdentifier[] { KRB5_MECH_OID, KRB5_MS_MECH_OID }; Oid krbNameOid = null; Oid krbMechOid = null; try { krbNameOid = new Oid("1.2.840.113554.1.2.2.1");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13.5K bytes - Viewed (1) -
compat/maven-model/src/test/java/org/apache/maven/model/MailingListTest.java
class MailingListTest { @Test void testHashCodeNullSafe() { new MailingList().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new MailingList().equals(null)); new MailingList().equals(new MailingList()); } @Test void testEqualsIdentity() { MailingList thing = new MailingList();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 1.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManagerFactory.java
@Named // qualifier is required for SiduDIBridge to work DefaultToolchainManagerV3 v3Manager() { return new DefaultToolchainManagerV3(); } @Provides @Priority(10) @Typed(org.apache.maven.api.services.ToolchainManager.class) DefaultToolchainManagerV4 v4Manager() { return new DefaultToolchainManagerV4(); } @Provides @Typed(ToolchainFactory.class) @Named("jdk")Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 31 10:58:52 UTC 2025 - 11K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/eventbus/SubscriberRegistryTest.java
private final SubscriberRegistry registry = new SubscriberRegistry(new EventBus()); public void testRegister() { assertEquals(0, registry.getSubscribersForTesting(String.class).size()); registry.register(new StringSubscriber()); assertEquals(1, registry.getSubscribersForTesting(String.class).size()); registry.register(new StringSubscriber());
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
if (tc.getConfig().isUseRawNTLM()) { return setupTargetName(tc, host, new NtlmContext(tc, this, doSigning)); } try { if (initialToken != null && initialToken.length > 0) { NegTokenInit tok = new NegTokenInit(initialToken); if (log.isDebugEnabled()) { log.debug("Have initial token " + tok);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/DefaultModelResolverTest.java
final class DefaultModelResolverTest extends AbstractRepositoryTestCase { /** * Creates a new {@code DefaultModelResolverTest} instance. */ DefaultModelResolverTest() { super(); } @Test public void testResolveParentThrowsUnresolvableModelExceptionWhenNotFound() throws Exception { final Parent parent = new Parent(); parent.setGroupId("ut.simple"); parent.setArtifactId("artifact");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 7.9K bytes - Viewed (0)