Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Alimin (0.19 sec)

  1. cmd/site-replication.go

    		var updateTgt, updateBW bool
    		var targetToUpdate madmin.BucketTarget
    		for _, target := range targets {
    			if target.Arn == ruleARN {
    				targetARN = ruleARN
    				updateBW = peer.DefaultBandwidth.Limit != 0 && target.BandwidthLimit == 0
    				if (target.URL().String() != peer.Endpoint) || updateBW {
    					updateTgt = true
    					targetToUpdate = target
    				}
    				break
    			}
    		}
    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)
  2. cmd/admin-handlers.go

    	ctx := r.Context()
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.ConsoleLogAdminAction)
    	if objectAPI == nil {
    		return
    	}
    	node := r.Form.Get("node")
    	// limit buffered console entries if client requested it.
    	limitStr := r.Form.Get("limit")
    	limitLines, err := strconv.Atoi(limitStr)
    	if err != nil {
    		limitLines = 10
    	}
    
    	logKind := madmin.LogKind(strings.ToUpper(r.Form.Get("logType"))).LogMask()
    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)
  3. cmd/metrics-v2.go

    	healTotal         MetricName = "heal_total"
    	hitsTotal         MetricName = "hits_total"
    	inflightTotal     MetricName = "inflight_total"
    	invalidTotal      MetricName = "invalid_total"
    	limitTotal        MetricName = "limit_total"
    	missedTotal       MetricName = "missed_total"
    	waitingTotal      MetricName = "waiting_total"
    	incomingTotal     MetricName = "incoming_total"
    	objectTotal       MetricName = "object_total"
    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)
  4. cmd/bucket-replication.go

    		case <-ctx.Done():
    			// server could be restarting - need
    			// to exit immediately
    			return
    		}
    	}
    }
    
    const (
    	resyncWorkerCnt        = 10 // limit of number of bucket resyncs is progress at any given time
    	resyncParallelRoutines = 10 // number of parallel resync ops per bucket
    )
    
    func newresyncer() *replicationResyncer {
    	rs := replicationResyncer{
    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)
Back to top