Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FindAllStringSubmatch (0.08 sec)

  1. cmd/bucket-replication-utils.go

    // TargetReplicationStatus - returns replication status of a target
    func (ri ReplicateObjectInfo) TargetReplicationStatus(arn string) (status replication.StatusType) {
    	repStatMatches := replStatusRegex.FindAllStringSubmatch(ri.ReplicationStatusInternal, -1)
    	for _, repStatMatch := range repStatMatches {
    		if len(repStatMatch) != 3 {
    			return
    		}
    		if repStatMatch[1] == arn {
    			return replication.StatusType(repStatMatch[2])
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    		// 5 - number sequence for drives
    		// 6 - drive suffix
    		re = regexp.MustCompile(`([^\s^{]*)({\d+...\d+})?([^\s^{^/]*)(/[^\s^{]*)({\d+...\d+})?([^\s]*)`)
    		poolsMatches := re.FindAllStringSubmatch(poolsArgs, -1)
    
    		anonPools = make([]string, len(poolsMatches))
    		idxMap := map[int]string{
    			1: "spfx",
    			3: "ssfx",
    		}
    		for pi, poolsMatch := range poolsMatches {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 04 11:32:32 UTC 2024
    - 99.7K bytes
    - Viewed (0)
Back to top