Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for James (0.28 sec)

  1. cmd/metrics-v2.go

    	lambdaSubsystem           MetricSubsystem = "lambda"
    	auditSubsystem            MetricSubsystem = "audit"
    	webhookSubsystem          MetricSubsystem = "webhook"
    )
    
    // MetricName are the individual names for the metric.
    type MetricName string
    
    const (
    	authTotal         MetricName = "auth_total"
    	canceledTotal     MetricName = "canceled_total"
    	errorsTotal       MetricName = "errors_total"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    			w.Header()[xhttp.AmzVersionID] = []string{gr.ObjInfo.VersionID}
    			w.Header()[xhttp.AmzDeleteMarker] = []string{strconv.FormatBool(gr.ObjInfo.DeleteMarker)}
    		}
    
    		// Update context bucket & object names for correct S3 XML error response
    		reqInfo := logger.GetReqInfo(ctx)
    		reqInfo.BucketName = srcBucket
    		reqInfo.ObjectName = srcObject
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	}
    }
    
    const (
    	minLargeObjSize = 128 * humanize.MiByte // 128MiB
    )
    
    // getWorkerCh gets a worker channel deterministically based on bucket and object names.
    // Must be able to grab read lock from p.
    
    func (p *ReplicationPool) getWorkerCh(bucket, object string, sz int64) chan<- ReplicationWorkerOperation {
    	h := xxh3.HashString(bucket + object)
    	p.mu.RLock()
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  4. cmd/site-replication.go

    		if rule.Priority > maxPrio {
    			maxPrio = rule.Priority
    		}
    	}
    
    	// leave some gaps in priority numbers for flexibility
    	return maxPrio + 10
    }
    
    // returns a slice with site names participating in site replciation but unspecified while adding
    // a new site.
    func getMissingSiteNames(oldDeps, newDeps set.StringSet, currSites []madmin.PeerInfo) []string {
    	diff := oldDeps.Difference(newDeps)
    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)
Back to top