Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for res_status (0.37 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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