Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for unprefixes (0.25 sec)

  1. cmd/object-api-listobjects_test.go

    				}
    
    				if len(testCase.result.Prefixes) != len(result.Prefixes) {
    					t.Log(testCase, testCase.result.Prefixes, result.Prefixes)
    					t.Fatalf("%s: Expected number of prefixes in the result to be '%d', but found '%d' prefixes instead", instanceType, len(testCase.result.Prefixes), len(result.Prefixes))
    				}
    				for j := 0; j < len(testCase.result.Prefixes); j++ {
    					if testCase.result.Prefixes[j] != result.Prefixes[j] {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jan 30 20:43:25 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  2. cmd/object-api-datatypes_gen.go

    					return
    				}
    			}
    		case "Prefixes":
    			var zb0003 uint32
    			zb0003, bts, err = msgp.ReadArrayHeaderBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Prefixes")
    				return
    			}
    			if cap(z.Prefixes) >= int(zb0003) {
    				z.Prefixes = (z.Prefixes)[:zb0003]
    			} else {
    				z.Prefixes = make([]string, zb0003)
    			}
    			for za0002 := range z.Prefixes {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Mar 08 19:08:18 GMT 2024
    - 69.8K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    			// With slash delimiter we only get the directory once.
    			found := false
    			if delimiter != slashSeparator {
    				for _, p := range loi.Prefixes {
    					if found {
    						break
    					}
    					found = p == obj.Name
    				}
    			}
    			if !found {
    				loi.Prefixes = append(loi.Prefixes, obj.Name)
    			}
    		} else {
    			loi.Objects = append(loi.Objects, obj)
    		}
    	}
    	if loi.IsTruncated {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 80.1K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

        that this class is not strictly immutable as it has stateful members like
        the connection pool and cache.
    
     *  **Get and Set prefixes are now avoided.** With ubiquitous builders
        throughout OkHttp these accessor prefixes aren't necessary. Previously
        OkHttp used _get_ and _set_ prefixes sporadically which make the API
        inconsistent and awkward to explore.
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    }
    
    // return URL for listen bucket notification.
    func getListenNotificationURL(endPoint, bucketName string, prefixes, suffixes, events []string) string {
    	queryValue := url.Values{}
    
    	queryValue["prefix"] = prefixes
    	queryValue["suffix"] = suffixes
    	queryValue["events"] = events
    	return makeTestTargetURL(endPoint, bucketName, "", queryValue)
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:06:57 GMT 2024
    - 75.7K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    	},
    	ErrOverlappingFilterNotification: {
    		Code:           "InvalidArgument",
    		Description:    "An object key name filtering rule defined with overlapping prefixes, overlapping suffixes, or overlapping combinations of prefixes and suffixes for the same event types.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrFilterNameInvalid: {
    		Code:           "InvalidArgument",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
  7. cmd/iam-store.go

    	// IAM policies directory.
    	iamConfigPoliciesPrefix = iamConfigPrefix + "/policies/"
    
    	// IAM sts directory.
    	iamConfigSTSPrefix = iamConfigPrefix + "/sts/"
    
    	// IAM Policy DB prefixes.
    	iamConfigPolicyDBPrefix                = iamConfigPrefix + "/policydb/"
    	iamConfigPolicyDBUsersPrefix           = iamConfigPolicyDBPrefix + "users/"
    	iamConfigPolicyDBSTSUsersPrefix        = iamConfigPolicyDBPrefix + "sts-users/"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  8. src/cmd/cgo/gcc.go

    	if r == '_' {
    		return "X" + s
    	}
    	return string(unicode.ToUpper(r)) + s[size:]
    }
    
    // godefsFields rewrites field names for use in Go or C definitions.
    // It strips leading common prefixes (like tv_ in tv_sec, tv_usec)
    // converts names to upper case, and rewrites _ into Pad_godefs_n,
    // so that all fields are exported.
    func godefsFields(fld []*ast.Field) {
    	prefix := fieldPrefix(fld)
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  9. cmd/object-api-multipart_test.go

    		// Objects used: `objectNames[1-5]`.
    		// UploadId's used: uploadIds[4-8].
    		// (Test number 39).
    		{bucketNames[2], "", "", "", "", 100, listMultipartResults[25], nil, true},
    		// Test cases with prefixes.
    		// Testing listing with prefix set to "min" (Test number 40)	.
    		{bucketNames[2], "min", "", "", "", 100, listMultipartResults[26], nil, true},
    		// Testing listing with prefix set to "ney" (Test number 41).
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 77.1K bytes
    - Viewed (0)
Back to top