- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 426 for checksum (0.05 sec)
-
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
* * @param allPageCount the total page count to set */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Checks if a previous page exists for pagination. * * @return true if a previous page exists, false otherwise */ public boolean isExistPrePage() { return existPrePage; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java
* @param allPageCount The total page count. */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Checks if there is a previous page. * @return True if a previous page exists, false otherwise. */ public boolean isExistPrePage() { return existPrePage; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/StemmerOverridePager.java
* * @param allPageCount The total page count to set */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Checks if a previous page exists. * * @return true if a previous page exists, false otherwise */ public boolean isExistPrePage() { return existPrePage; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java
* * @param allPageCount The total page count */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Checks if a previous page exists. * * @return True if a previous page exists, false otherwise */ public boolean isExistPrePage() { return existPrePage; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/CollectPreconditions.java
import static com.google.common.base.Preconditions.checkState; import com.google.common.annotations.GwtCompatible; import com.google.errorprone.annotations.CanIgnoreReturnValue; /** Precondition checks useful in collection implementations. */ @GwtCompatible final class CollectPreconditions { static void checkEntryNotNull(Object key, Object value) { if (key == null) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
* This class is designed to be used statically. */ protected ResourceUtil() { // nothing } /** * Gets the HTTP URL for the OpenSearch (Fesen) server. * First checks for a system-configured search engine address, * then falls back to the URL configured in FessConfig. * * @return the HTTP URL for the OpenSearch server */ public static String getFesenHttpUrl() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
return output; } /** * Checks whether this mapping item has pending updates. * * @return true if both newInputs and newOutput are not null, indicating pending updates */ public boolean isUpdated() { return newInputs != null && newOutput != null; } /** * Checks whether this mapping item is marked for deletion.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/WinErrorTest.java
} @Test @DisplayName("Arrays: non-null, same length, and exact contents") void arrays_are_well_formed_and_match() { // Validate arrays existence and alignment (edge and structure checks) assertNotNull(WinError.WINERR_CODES, "WINERR_CODES should not be null"); assertNotNull(WinError.WINERR_MESSAGES, "WINERR_MESSAGES should not be null");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
/** * Interval in milliseconds between crawler thread executions. * Used to control the rate at which new crawler threads are started * and the frequency of status checks. */ protected long crawlingExecutionInterval = Constants.DEFAULT_CRAWLING_EXECUTION_INTERVAL; /** * Thread priority for crawler threads. * Defaults to normal thread priority. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
tests/submodel_test.go
package tests_test import ( "testing" "gorm.io/gorm" ) type Man struct { ID int Age int Name string Detail string } // Panic-safe BeforeUpdate hook that checks for Changed("age") func (m *Man) BeforeUpdate(tx *gorm.DB) (err error) { if !tx.Statement.Changed("age") { return nil } return nil } func TestSubModel(t *testing.T) { man := Man{Age: 18, Name: "random-name"}
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Aug 20 04:51:17 UTC 2025 - 944 bytes - Viewed (0)