- Sort Score
- Result 10 results
- Languages All
Results 691 - 700 of 3,432 for NULL (0.06 sec)
- 
				
				src/test/java/org/codelibs/core/lang/ClassUtilTest.javaassertThat(ClassUtil.concatName("aaa", null), is("aaa")); assertThat(ClassUtil.concatName("aaa", ""), is("aaa")); assertThat(ClassUtil.concatName(null, "bbb"), is("bbb")); assertThat(ClassUtil.concatName("", "bbb"), is("bbb")); assertThat(ClassUtil.concatName("", "bbb"), is("bbb")); assertThat(ClassUtil.concatName(null, null), is(nullValue())); Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 6.2K bytes - Viewed (0)
- 
				
				api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java* Not all sources are backed by files - for example, in-memory sources * or database-backed sources will return null. * * @return the underlying {@code Path} if this source is file-backed, * or {@code null} if this source has no associated file */ @Nullable Path getPath(); /** * Creates a new input stream to read the source contents.Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 09:46:53 UTC 2025 - 4K bytes - Viewed (0)
- 
				
				src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.javaDialectVersion selected = null; for (final DialectVersion dv : DialectVersion.values()) { if (!dv.isSMB2()) { continue; } if (dv.getDialect() == getDialectRevision()) { selected = dv; } } if (selected == null) { log.debug("Server returned an unknown dialect");Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java} /** * Test null password handling */ @Test public void testNullPasswordHandling() { // Test with null String password NtlmPasswordAuthenticator auth1 = new NtlmPasswordAuthenticator("testuser", (String) null); assertNull(auth1.getPassword()); // Test with null char[] passwordRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0)
- 
				
				android/guava-tests/test/com/google/common/reflect/ClassPathTest.java.testEquals(); } @AndroidIncompatible // Android forbids null parent ClassLoader public void testClassPathEntries_emptyURLClassLoader_noParent() { assertThat(ClassPath.getClassPathEntries(new URLClassLoader(new URL[0], null)).keySet()) .isEmpty(); } @AndroidIncompatible // Android forbids null parent ClassLoader public void testClassPathEntries_urlClassLoader_noParent() throws Exception { Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 23K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java@Test @DisplayName("Should handle null values in toString") void testToStringWithNulls() { String result = referralData.toString(); assertTrue(result.contains("server=null")); assertTrue(result.contains("share=null")); assertTrue(result.contains("link=null")); assertTrue(result.contains("path=null")); } } @NestedRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.6K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java} // Test with null configuration values public void test_withNullConfigValues() { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getCookieDefaultPath() { return null; } @OverrideRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.9K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/smb/SmbSessionInternalTest.java} // Edge/invalid inputs: null or empty share/service cause IllegalArgumentException (mocked) @ParameterizedTest @DisplayName("getSmbTree invalid inputs (null/empty) throw IllegalArgumentException") @CsvSource({ ",service", // null share " ,service", // empty share "share,", // null service "share, " // empty service })Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.8K bytes - Viewed (0)
- 
				
				src/main/java/org/codelibs/fess/exec/Crawler.javafinal boolean runAll = webConfigIdList == null && fileConfigIdList == null && dataConfigIdList == null; Thread webFsCrawlerThread = null; Thread dataCrawlerThread = null; if (runAll || webConfigIdList != null || fileConfigIdList != null) { webFsCrawlerThread = new Thread((Runnable) () -> { // crawl webRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0)
- 
				
				samples/slack/src/main/java/okhttp3/slack/OAuthSessionFactory.javaString stateString = requestUrl.queryParameter("state"); ByteString state = stateString != null ? ByteString.decodeBase64(stateString) : null; Listener listener; synchronized (this) { listener = listeners.get(state); } if (code == null || listener == null) { return new MockResponse() .setResponseCode(404) .setBody("unexpected request"); } Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 12 07:26:27 UTC 2021 - 3.8K bytes - Viewed (0)