Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for sita (0.19 sec)

  1. cmd/admin-handlers-site-replication.go

    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    	// Report the ILMExpiryStats only if at least one site has replication of ILM expiry enabled
    	var replicateILMExpiry bool
    	for _, site := range info.Sites {
    		if site.ReplicateILMExpiry {
    			replicateILMExpiry = true
    			break
    		}
    	}
    	if !replicateILMExpiry {
    		// explicitly send nil for ILMExpiryStats
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 15 09:40:39 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  2. docs/bucket/replication/setup_3site_replication.sh

    ./mc retention set --default governance 30d sitea/olockbucket
    
    echo "Copying data to source sitea/bucket"
    ./mc cp --enc-s3 "sitea/" --quiet /etc/hosts sitea/bucket
    sleep 1
    
    echo "Copying data to source sitea/olockbucket"
    ./mc cp --quiet /etc/hosts sitea/olockbucket
    sleep 1
    
    echo "Verifying the metadata difference between source and target"
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/site/site.xml

    Hervé Boutemy <******@****.***> 1711904300 +0200
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 24 16:01:00 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  4. api/maven-api-metadata/src/site/site.xml

    Guillaume Nodet <******@****.***> 1712844394 +0200
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 11 14:06:34 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  5. docs/pt/docs/help-fastapi.md

    * Notícias sobre FastAPI e amigos 🚀
    * Tutoriais 📝
    * Recursos ✨
    * Mudanças de última hora 🚨
    * Truques e dicas ✅
    
    ## Siga o FastAPI no twitter
    
    <a href="https://twitter.com/fastapi" class="external-link" target="_blank">Siga @fastapi no **Twitter**</a> para receber as últimas notícias sobre o **FastAPI**. 🐦
    
    ## Favorite o **FastAPI** no GitHub
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    const (
    	srStatePrefix = minioConfigPrefix + "/site-replication"
    	srStateFile   = "state.json"
    )
    
    const (
    	srStateFormatVersion1 = 1
    )
    
    var (
    	errSRCannotJoin = SRError{
    		Cause: errors.New("this site is already configured for site-replication"),
    		Code:  ErrSiteReplicationInvalidRequest,
    	}
    	errSRDuplicateSites = SRError{
    		Cause: errors.New("duplicate sites provided for site-replication"),
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
  7. docs/bucket/versioning/versioning-tests.sh

    echo hello | ./mc pipe sitea/delissue/hello --insecure
    
    ./mc version suspend sitea/delissue --insecure
    
    ./mc rm sitea/delissue/hello --insecure
    
    ./mc version enable sitea/delissue --insecure
    
    echo hello | ./mc pipe sitea/delissue/hello --insecure
    
    ./mc version suspend sitea/delissue --insecure
    
    ./mc rm sitea/delissue/hello --insecure
    
    count=$(./mc ls --versions sitea/delissue --insecure | wc -l)
    
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 09:50:52 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  8. .github/workflows/multipart/migrate.sh

    fi
    
    # Add user group test
    ./mc admin user add site1 site-replication-issue-user site-replication-issue-password
    ./mc admin group add site1 site-replication-issue-group site-replication-issue-user
    
    max_wait_attempts=30
    wait_interval=5
    
    attempt=1
    while true; do
    	diff <(./mc admin group info site1 site-replication-issue-group) <(./mc admin group info site2 site-replication-issue-group)
    
    	if [[ $? -eq 0 ]]; then
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 15:54:24 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  9. Makefile

    	@(env bash $(PWD)/docs/site-replication/run-multi-site-oidc.sh)
    
    test-site-replication-minio: install-race ## verify automatic site replication
    	@echo "Running tests for automatic site replication of IAM (with MinIO IDP)"
    	@(env bash $(PWD)/docs/site-replication/run-multi-site-minio-idp.sh)
    	@echo "Running tests for automatic site replication of SSE-C objects"
    	@(env bash $(PWD)/docs/site-replication/run-ssec-object-replication.sh)
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:55:41 GMT 2024
    - 10.3K bytes
    - Viewed (1)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

                Site.Builder builder, Site target, Site source, boolean sourceDominant, Map<Object, Object> context) {}
    
        protected boolean isSiteEmpty(Site site) {
            return (site.getId() == null || site.getId().isEmpty())
                    && (site.getName() == null || site.getName().isEmpty())
                    && (site.getUrl() == null || site.getUrl().isEmpty());
        }
    
        @Override
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 22.8K bytes
    - Viewed (0)
Back to top