- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 299 for updatesum (0.05 sec)
-
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
* 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. * An item is considered deleted if it has updates pending and the new inputs array is empty. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
guava/src/com/google/common/hash/AbstractByteHasher.java
abstract class AbstractByteHasher extends AbstractHasher { private @Nullable ByteBuffer scratch; /** Updates this hasher with the given byte. */ protected abstract void update(byte b); /** Updates this hasher with the given bytes. */ protected void update(byte[] b) { update(b, 0, b.length); } /** Updates this hasher with {@code len} bytes starting at {@code off} in the given buffer. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 12:40:17 UTC 2025 - 3.9K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/LongAdder.java
public void decrement() { add(-1L); } /** * Returns the current sum. The returned value is NOT an atomic snapshot; invocation in * the absence of concurrent updates returns an accurate result, but concurrent updates that occur * while the sum is being calculated might not be incorporated. * * @return the sum */ @Override public long sum() { long sum = base; Cell[] as = cells;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0) -
cmd/erasure.go
Name: bucket.Name, LastUpdate: time.Time{}, NextCycle: wantCycle, } } // Collect updates. updates := make(chan dataUsageEntry, 1) var wg sync.WaitGroup wg.Add(1) go func(name string) { defer wg.Done() for update := range updates { select { case <-ctx.Done(): case bucketResults <- dataUsageEntryInfo{ Name: name,
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
return "MappingFile [path=" + path + ", mappingItemList=" + mappingItemList + ", id=" + id + "]"; } /** * Inner class for handling updates to the character mapping file. * This class manages the temporary file creation, writing operations, * and atomic updates to ensure data consistency during modifications. */ protected class MappingUpdater implements Closeable {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
cmd/bucket-stats.go
// Failed size in bytes FailedSize int64 `json:"failedReplicationSize"` // Total number of pending operations including metadata updates PendingCount int64 `json:"pendingReplicationCount"` // Total number of failed operations including metadata updates FailedCount int64 `json:"failedReplicationCount"` } func newBucketReplicationStats() *BucketReplicationStats { return &BucketReplicationStats{
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 13.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SigningDigest.java
import jcifs.smb1.util.Hexdump; import jcifs.smb1.util.LogStream; /** * To filter 0 len updates and for debugging */ public class SigningDigest implements SmbConstants { static LogStream log = LogStream.getInstance(); private MessageDigest digest; private byte[] macSigningKey; private boolean bypass = false; private int updates; private int signSequence; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.9K bytes - Viewed (0) -
tests/update_test.go
} checkUpdatedAtChanged("Updates with map", user.UpdatedAt) checkOtherData("Updates with map") var result2 User if err := DB.Where("id = ?", user.ID).First(&result2).Error; err != nil { t.Errorf("errors happened when query: %v", err) } else { CheckUser(t, result2, *user) } if err := DB.Model(user).Updates(User{Age: 2}).Error; err != nil {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 30.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
*/ public OptionalEntity<RelatedContent> getRelatedContent(final String id) { return relatedContentBhv.selectByPK(id); } /** * Stores (inserts or updates) a related content entity. * After storing, updates the related content helper to refresh the cache. * * @param relatedContent the RelatedContent entity to store */ public void store(final RelatedContent relatedContent) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
lib/time/update.bash
# # That will prepare the files and create the commit. # # To review such a commit (as the reviewer), use: # # git codereview change NNNNNN # CL number # cd lib/time # ./update.bash # # If it prints "No updates needed.", then the generated files # in the CL match the update.bash in the CL. # Versions to use. CODE=2025b DATA=2025b set -e cd $(dirname $0) rm -rf work mkdir work
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed May 28 16:03:11 UTC 2025 - 2.1K bytes - Viewed (0)