- Sort Score
- Result 10 results
- Languages All
Results 991 - 1000 of 4,655 for news (0.02 sec)
-
guava-tests/test/com/google/common/hash/BloomFilterTest.java
private static void checkSanity(BloomFilter<Object> bf) { assertFalse(bf.mightContain(new Object())); assertFalse(bf.apply(new Object())); assertFalse(bf.test(new Object())); for (int i = 0; i < 100; i++) { Object o = new Object(); bf.put(o); assertTrue(bf.mightContain(o)); assertTrue(bf.apply(o)); assertTrue(bf.test(o)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 22K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 24.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 110.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
throw new NdrException(NdrException.INVALID_CONFORMANCE); } sids = new LsarSidPtr[_sidss]; } _src = _src.derive(_sidsi); for (int _i = 0; _i < _sidss; _i++) { if (sids[_i] == null) { sids[_i] = new LsarSidPtr(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java
ComponentUtil.register(new MockFessConfig(), "fessConfig"); ComponentUtil.register(new MockSystemHelper(), "systemHelper"); ComponentUtil.register(new MockPermissionHelper(), "permissionHelper"); } private Set<String> buildByParameter(final RoleQueryHelper roleQueryHelperImpl, final HttpServletRequest request) { Set<String> roleSet = new HashSet<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java
CreateContextRequest[] contexts = new CreateContextRequest[] { new MockCreateContextRequest("SHORT", 16), new MockCreateContextRequest("MEDIUM_LENGTH_NAME", 32), new MockCreateContextRequest("VERY_LONG_CONTEXT_NAME_FOR_TESTING", 64) }; byte[] buffer = new byte[512]; int offset = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java
List<ArtifactRepository> repos = new ArrayList<>(); repos.add(artifactRepositoryFactory.createArtifactRepository( "repo1", "string://url1", new ArtifactRepositoryLayoutStub(), null, null)); repos.add(artifactRepositoryFactory.createArtifactRepository( "repo2", "string://url2", new ArtifactRepositoryLayoutStub(), null, null));Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
final List<Pair<FormScheme, Credentials>> formSchemeList = new ArrayList<>(); for (final Authentication authentication : siteCredentialList) { final AuthScheme authScheme = authentication.getAuthScheme(); if (authScheme instanceof FormScheme) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 52.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/Smb2LeaseKeyTest.java
} @Test @DisplayName("Should reject wrong size key") void testWrongSizeKey() { assertThrows(IllegalArgumentException.class, () -> new Smb2LeaseKey(new byte[15])); assertThrows(IllegalArgumentException.class, () -> new Smb2LeaseKey(new byte[17])); assertThrows(IllegalArgumentException.class, () -> new Smb2LeaseKey(new byte[0])); }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 00:16:17 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/EncryptionNegotiateContextTest.java
EncryptionNegotiateContext context = new EncryptionNegotiateContext(mockConfig, ciphers); assertNotNull(context); assertArrayEquals(ciphers, context.getCiphers()); } @Test @DisplayName("Should create instance with null ciphers") void testConstructorWithNullCiphers() { EncryptionNegotiateContext context = new EncryptionNegotiateContext(mockConfig, null);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0)