Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for Errs (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/bucket-replication.go

    					},
    				}
    				err = tgt.RemoveObjectTagging(ctx, tgt.Bucket, object, dopts)
    			}
    			if err != nil {
    				errs[idx] = err
    			}
    		}(idx, tgt)
    	}
    	wg.Wait()
    
    	var (
    		terr        error
    		taggedCount int
    	)
    	for _, err := range errs {
    		if err == nil {
    			taggedCount++
    			continue
    		}
    		if err != nil {
    			terr = err
    		}
    	}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 118.2K bytes
    - Click Count (0)
  2. CHANGELOG/CHANGELOG-1.36.md

    - github.com/morikuni/aec: [v1.0.0](https://github.com/morikuni/aec/tree/v1.0.0)
    - github.com/mrunalp/fileutils: [v0.5.1](https://github.com/mrunalp/fileutils/tree/v0.5.1)
    - github.com/zeebo/errs: [v1.4.0](https://github.com/zeebo/errs/tree/v1.4.0)
    - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp: v1.27.0
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 23:38:00 GMT 2026
    - 142.1K bytes
    - Click Count (0)
  3. cmd/metrics-v2.go

    		rpcStats := rest.GetRPCStats()
    		if globalIsDistErasure {
    			metrics = append(metrics, MetricV2{
    				Description: getInternodeFailedRequests(),
    				Value:       float64(rpcStats.Errs),
    			})
    			metrics = append(metrics, MetricV2{
    				Description: getInternodeTCPDialTimeout(),
    				Value:       float64(rpcStats.DialErrs),
    			})
    			metrics = append(metrics, MetricV2{
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 133.6K bytes
    - Click Count (0)
Back to Top