- Sort Score
- Result 10 results
- Languages All
Results 651 - 660 of 3,432 for NULL (0.02 sec)
- 
				
				src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.javaassertEquals("", item2.getInputValue()); // Test with null input - should return empty string StopwordsItem item3 = new StopwordsItem(3, null); assertEquals("", item3.getInputValue()); } public void test_isUpdated() { // Test isUpdated method StopwordsItem item = new StopwordsItem(1, "original"); assertFalse(item.isUpdated()); Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0)
- 
				
				tests/migrate_test.goRecID2 int64 `gorm:"column:recid2;type:decimal(8);not null" json:"recid2"` RecID3 int64 `gorm:"column:recid3;type:decimal(8,1);not null" json:"recid3"` } type MigrateDecimalColumn2 struct { RecID1 int64 `gorm:"column:recid1;type:decimal(8);not null" json:"recid1"` RecID2 int64 `gorm:"column:recid2;type:decimal(9,1);not null" json:"recid2"` Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Aug 20 04:51:17 UTC 2025 - 65.2K bytes - Viewed (0)
- 
				
				src/main/java/org/codelibs/fess/ldap/LdapManager.java* @param entryDn the LDAP entry DN * @return the extracted role name, or null if not found */ protected String getSearchRoleName(final String entryDn) { if (entryDn == null) { return null; } int start = entryDn.toLowerCase(Locale.ROOT).indexOf("cn="); if (start == -1) { return null; } start += 3;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/core/lang/StringUtilTest.javaassertThat(StringUtil.defaultString("aaa", null), is("aaa")); assertThat(StringUtil.defaultString(null, null), is(nullValue())); } @Test public void testNewStringUnsafe() { assertNull(StringUtil.newStringUnsafe(null)); Method newStringUnsafeMethod = StringUtil.newStringUnsafeMethod; if (newStringUnsafeMethod != null) { Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 12K bytes - Viewed (0)
- 
				
				src/main/java/jcifs/util/PathValidator.javaif (path == null || path.isEmpty()) { throw new SmbException("Path cannot be null or empty"); } // Check length if (path.length() > maxPathLength) { throw new SmbException("Path exceeds maximum length: " + path.length() + " > " + maxPathLength); } // Check for null bytes if (NULL_BYTE.matcher(path).find()) { Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.5K bytes - Viewed (0)
- 
				
				android/guava/src/com/google/common/base/Preconditions.java} } /* * Preconditions.checkNotNull is *intended* for performing eager null checks on parameters that a * nullness checker can already "prove" are non-null. That means that the first parameter to * checkNotNull *should* be annotated to require it to be non-null. * * However, for a variety of reasons, Google developers have written a ton of code over the past Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 10 22:11:00 UTC 2025 - 53K bytes - Viewed (0)
- 
				
				compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest.java* @return This request, never {@code null}. */ @Override MetadataResolutionRequest setOffline(boolean offline); /** * Gets the artifact to resolve metadata for. * * @return The artifact to resolve metadata for or {@code null} if not set. */ Artifact getArtifact(); /**Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.9K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java} public void test_constructor_withNullTypeAndMessage() { // Test constructor with both null type and message String type = null; String message = null; InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message); assertNull(exception.getType()); assertNull(exception.getMessage()); assertNull(exception.getCause()); }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java// Simulate decode_out with null info and totalentries netdfs.NetrDfsEnumEx decodedEnumEx = new netdfs.NetrDfsEnumEx(null, 0, 0, null, null); // Manually encode the expected output for decode_out byte[] encodeBufferOut2 = new byte[1024]; NdrBuffer dstOut = new NdrBuffer(encodeBufferOut2, 0); // Simulate info pointer (null) dstOut.enc_ndr_long(0); // Null pointer for infoRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.9K bytes - Viewed (0)
- 
				
				fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.javafinal String encoding = loadCharset(is); if (encoding == null) { if (defaultEncoding == null) { responseData.setCharSet(Constants.UTF_8); } else if (responseData.getCharSet() == null) { responseData.setCharSet(defaultEncoding); } } else { Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 28.5K bytes - Viewed (0)