Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for statusMap (0.32 sec)

  1. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

                    if (Constants.CRAWLER_STATUS.equals(key)) {
                        statusMap.put(key, value);
                    }
                }
    
                @Override
                public Map<String, String> getInfoMap(String sessionId) {
                    Map<String, String> result = new HashMap<>(infoMap);
                    result.putAll(statusMap);
                    return result;
                }
            };
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils.go

    type VersionPurgeStatusType = replication.VersionPurgeStatusType
    
    type replicationResyncer struct {
    	// map of bucket to their resync status
    	statusMap      map[string]BucketReplicationResyncStatus
    	workerSize     int
    	resyncCancelCh chan struct{}
    	workerCh       chan struct{}
    	sync.RWMutex
    }
    
    const (
    	replicationDir      = ".replication"
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 26K bytes
    - Viewed (0)
Back to top