Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for pool (0.15 sec)

  1. cmd/bucket-replication.go

    		objLayer:        o,
    		priority:        priority,
    		maxWorkers:      maxWorkers,
    	}
    
    	pool.AddLargeWorkers()
    	pool.ResizeWorkers(workers, 0)
    	pool.ResizeFailedWorkers(failedWorkers)
    	go pool.resyncer.PersistToDisk(ctx, o)
    	go pool.processMRF()
    	go pool.persistMRF()
    	return pool
    }
    
    // AddMRFWorker adds a pending/failed replication worker to handle requests that could not be queued
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  2. cmd/metrics-v2.go

    	dependGlobalObjectAPI           bool
    	dependGlobalAuthNPlugin         bool
    	dependGlobalSiteReplicationSys  bool
    	dependGlobalNotificationSys     bool
    	dependGlobalKMS                 bool
    	bucketOnly                      bool
    	dependGlobalLambdaTargetList    bool
    	dependGlobalIAMSys              bool
    	dependGlobalLockServer          bool
    	dependGlobalIsDistErasure       bool
    	dependGlobalBackgroundHealState bool
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    	if srcBucket == dstBucket {
    		return false
    	}
    	return isRemoteCallRequired(ctx, dstBucket, objAPI)
    }
    
    // Check if the bucket is on a remote site, this code only gets executed when federation is enabled.
    func isRemoteCallRequired(ctx context.Context, bucket string, objAPI ObjectLayer) bool {
    	if globalDNSConfig == nil {
    		return false
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  4. cmd/server_test.go

    type TestSuiteCommon struct {
    	serverType string
    	testServer TestServer
    	endPoint   string
    	accessKey  string
    	secretKey  string
    	signer     signerType
    	secure     bool
    	client     *http.Client
    }
    
    type check struct {
    	*testing.T
    	testType string
    }
    
    // Assert - checks if gotValue is same as expectedValue, if not fails the test.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    			// No ellipses pattern. Anonymize host name from every pool arg
    			pools := strings.Fields(poolsArgs)
    			anonPools = make([]string, len(pools))
    			for index, arg := range pools {
    				anonPools[index] = anonAddr(arg)
    			}
    			return cmdLineWithoutPools + strings.Join(anonPools, " ")
    		}
    
    		// Ellipses pattern in pool args. Regex groups:
    		// 1 - server prefix
    		// 2 - number sequence for servers
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  6. internal/s3select/csv/testdata/testdata.zip

    Heights 3802 1332 232 1 Manhattan 023200 1023200 E MN03 Central Harlem North-Polo Grounds 3803 3389529 2 2014-03-25 13:13:26 2014-03-25 13:15:03 N 1 -73.953834533691406 40.811191558837891 -73.938751220703125 40.813190460205078 1 0.30 3.5 0 0.5 0 0 4 2 1 166 42 green 0.00 0.0 0.0 39 26 5.82 1312 209.01 1 Manhattan 020901 1020901 E MN09 Morningside Heights 3802 1596 212 1 Manhattan 021200 1021200 I MN03 Central Harlem North-Polo Grounds 3803 3389530 2 2014-03-20 16:11:35 2014-03-20 16:52:09 N 1 -73.953887939453125...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 111.6K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    )
    
    // PeerSiteInfo is a wrapper struct around madmin.PeerSite with extra info on site status
    type PeerSiteInfo struct {
    	madmin.PeerSite
    	self         bool
    	DeploymentID string
    	Replicated   bool // true if already participating in site replication
    	Empty        bool // true if cluster has no buckets
    }
    
    // getSiteStatuses gathers more info on the sites being added
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  8. cmd/object-handlers_test.go

    		copyUnmodifiedHeader string // data for "X-Amz-Copy-Source-If-Unmodified-Since" header
    		copySourceSame       bool
    		metadataGarbage      bool
    		metadataReplace      bool
    		metadataCopy         bool
    		metadata             map[string]string
    		accessKey            string
    		secretKey            string
    		// expected output.
    		expectedRespStatus int
    	}{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
Back to top