Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cp (0.2 sec)

  1. cmd/metrics-v3-types.go

    // metricPrefix converts a collector path to a metric name prefix. The path is
    // converted to snake-case (by replaced '/' and '-' with '_') and prefixed with
    // `minio_`.
    func (cp collectorPath) metricPrefix() string {
    	s := strings.TrimPrefix(string(cp), "/")
    	s = strings.ReplaceAll(s, "/", "_")
    	s = strings.ReplaceAll(s, "-", "_")
    	return "minio_" + s
    }
    
    // isDescendantOf returns true if it is a descendant of (or the same as)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 30 15:05:22 GMT 2024
    - 14.7K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    				etag := v[0]
    				if etag == "" {
    					t.Fatalf("Unexpected empty etag")
    				}
    				cp = append(cp, CompletePart{PartNumber: partID, ETag: etag[1 : len(etag)-1]})
    			} else {
    				t.Fatalf("Missing etag header")
    			}
    		}
    
    		// Call CompleteMultipart API
    		compMpBody, err := xml.Marshal(CompleteMultipartUpload{Parts: cp})
    		if err != nil {
    			t.Fatalf("Unexpected err: %#v", err)
    		}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  3. cmd/utils.go

    		}
    	}
    	return newMeta
    }
    
    // pathClean is like path.Clean but does not return "." for
    // empty inputs, instead returns "empty" as is.
    func pathClean(p string) string {
    	cp := path.Clean(p)
    	if cp == "." {
    		return ""
    	}
    	return cp
    }
    
    func trimLeadingSlash(ep string) string {
    	if len(ep) > 0 && ep[0] == '/' {
    		// Path ends with '/' preserve it
    		if ep[len(ep)-1] == '/' && len(ep) > 1 {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 15:18:21 GMT 2024
    - 31.4K bytes
    - Viewed (0)
Back to top