Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for res_status (0.21 sec)

  1. cmd/bucket-replication-utils_test.go

    		}
    		if repStatus := rinfos.ReplicationStatus(); repStatus != test.expectedReplicationStatus {
    			t.Errorf("Test%d (%s): ReplicationStatus  got %s , want %s", i+1, test.name, repStatus, test.expectedReplicationStatus)
    		}
    		if action := rinfos.Action(); action != test.expectedAction {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Aug 08 20:27:40 GMT 2023
    - 9.3K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils.go

    		default:
    			replStatus := getCompositeReplicationStatus(rs.Targets)
    			// return REPLICA status if replica received timestamp is later than replication timestamp
    			// provided object replication completed for all targets.
    			if rs.ReplicaTimeStamp.Equal(timeSentinel) || rs.ReplicaTimeStamp.IsZero() {
    				return replStatus
    			}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 26.2K bytes
    - Viewed (0)
  3. docs/site-replication/run-multi-site-ldap.sh

    if [ $? -ne 0 ]; then
    	echo "expecting tag removal to be successful. exiting.."
    	exit_1
    fi
    sleep 5
    
    replStatus_minio2=$(./mc stat minio2/newbucket/README.md --json | jq -r .replicationStatus)
    if [ $? -ne 0 ]; then
    	echo "expecting object to be present. exiting.."
    	exit_1
    fi
    
    if [ ${replStatus_minio2} != "COMPLETED" ]; then
    	echo "expected tag removal to have replicated, exiting..."
    	exit_1
    fi
    
    Shell Script
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Feb 14 04:51:23 GMT 2024
    - 10K bytes
    - Viewed (1)
  4. docs/site-replication/run-multi-site-minio-idp.sh

    if [ $? -ne 0 ]; then
    	echo "expecting tag removal to be successful. exiting.."
    	exit_1
    fi
    sleep 5
    
    replStatus_minio2=$(./mc stat minio2/newbucket/README.md --json | jq -r .replicationStatus)
    if [ $? -ne 0 ]; then
    	echo "expecting object to be present. exiting.."
    	exit_1
    fi
    
    if [ ${replStatus_minio2} != "COMPLETED" ]; then
    	echo "expected tag removal to have replicated, exiting..."
    	exit_1
    fi
    
    Shell Script
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Mar 07 00:19:24 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    	// from versioning via the MinIO bucket versioning extension.
    	if !globalBucketVersioningSys.PrefixEnabled(bucket, object) {
    		return
    	}
    
    	replStatus := mopts.ReplicationStatus()
    	if replStatus == replication.Replica && !mopts.isMetadataReplication() {
    		return
    	}
    
    	if mopts.replicationRequest { // incoming replication request on target cluster
    		return
    	}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 20 09:05:54 GMT 2024
    - 112K bytes
    - Viewed (1)
  6. cmd/xl-storage-format-v2.go

    		}
    	}
    	fi.ReplicationState = getInternalReplicationState(fi.Metadata)
    	fi.Deleted = !fi.VersionPurgeStatus().Empty()
    	replStatus := fi.ReplicationState.CompositeReplicationStatus()
    	if replStatus != "" {
    		fi.Metadata[xhttp.AmzBucketReplicationStatus] = string(replStatus)
    	}
    	fi.Erasure.Algorithm = j.ErasureAlgorithm.String()
    	fi.Erasure.Index = j.ErasureIndex
    	fi.Erasure.BlockSize = j.ErasureBlockSize
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 16:43:43 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

    import org.opensearch.common.unit.TimeValue;
    import org.opensearch.common.xcontent.XContentType;
    import org.opensearch.core.action.ActionListener;
    import org.opensearch.core.action.ActionResponse;
    import org.opensearch.core.rest.RestStatus;
    import org.opensearch.index.query.InnerHitBuilder;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.index.reindex.UpdateByQueryRequest;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
Back to top