Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HasPrefix (0.17 sec)

  1. cmd/admin-handlers.go

    	// Check latency...
    	if opts.Threshold > 0 && trcInfo.Duration < opts.Threshold {
    		return false
    	}
    
    	// Check internal path
    	isInternal := isHTTP && HasPrefix(trcInfo.HTTP.ReqInfo.Path, minioReservedBucketPath+SlashSeparator)
    	if isInternal && !opts.Internal {
    		return false
    	}
    
    	// Filter non-errors.
    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)
  2. cmd/object-handlers.go

    			versionID = tarHdrs.PAXRecords["minio.versionId"]
    			hdrs = make(http.Header)
    			for k, v := range tarHdrs.PAXRecords {
    				if k == "minio.versionId" {
    					continue
    				}
    				if strings.HasPrefix(k, "minio.metadata.") {
    					k = strings.TrimPrefix(k, "minio.metadata.")
    					hdrs.Set(k, v)
    				}
    			}
    			m, err := extractMetadata(ctx, textproto.MIMEHeader(hdrs))
    			if err != nil {
    				return err
    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)
  3. cmd/site-replication.go

    			prev = c
    			continue
    		}
    		if len(prev.Rules) != len(c.Rules) {
    			return false
    		}
    		if len(c.Rules) != total-1 {
    			return false
    		}
    		for _, r := range c.Rules {
    			if !strings.HasPrefix(r.ID, "site-repl-") {
    				return false
    			}
    			if r.DeleteMarkerReplication.Status == sreplication.Disabled ||
    				r.DeleteReplication.Status == sreplication.Disabled ||
    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)
  4. cmd/object-handlers_test.go

    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a
    		// ServeHTTP to execute the logic of the handler.
    		apiRouter.ServeHTTP(rec, req)
    
    		isEnc := false
    		expected := 200
    		if strings.HasPrefix(input.objectName, "enc-") {
    			isEnc = true
    			expected = 400
    		}
    		if rec.Code != expected {
    			t.Errorf("Test %d: expected code %d but got %d for object %s", i+1, expected, rec.Code, input.objectName)
    		}
    
    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