Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for bots (0.14 sec)

  1. cmd/xl-storage-format-v2.go

    		return errFileCorrupt
    	}
    	// bts will shrink as we decode.
    	bts := allMeta
    	var field []byte
    	var zb0001 uint32
    	zb0001, bts, err = msgp.ReadMapHeaderBytes(bts)
    	if err != nil {
    		return msgp.WrapError(err, "loadLegacy.ReadMapHeader")
    	}
    
    	var tmp xlMetaV2Version
    	for zb0001 > 0 {
    		zb0001--
    		field, bts, err = msgp.ReadMapKeyZC(bts)
    		if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  2. cmd/xl-storage_test.go

    			destPath:    "new-path/",
    			expectedErr: errFileAccessDenied,
    		},
    		// TestXLStorage case - 9.
    		// TestXLStorage case with source being a file and destination being a directory.
    		// Either both have to be files or directories.
    		// Expecting to fail with `errFileAccessDenied`.
    		{
    			srcVol:      "src-vol",
    			destVol:     "dest-vol",
    			srcPath:     "file4",
    			destPath:    "new-path/",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle_test.go

    			objectSuccessorModTime: time.Now().UTC().Add(-90 * 24 * time.Hour),
    			expectedAction:         DeleteVersionAction,
    		},
    		{
    			// DelMarkerExpiration is preferred since object age is past both transition and expiration days.
    			inputConfig: `<LifecycleConfiguration>
                                <Rule>
                                  <ID>DelMarkerExpiration with Transition</ID>
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:11:10 GMT 2024
    - 53.2K bytes
    - Viewed (0)
  4. cmd/admin-handlers-users.go

    //
    // The newer API will eventually become the default (and only) one. The older
    // response is to return only the policy JSON. The newer response returns
    // timestamps along with the policy JSON. Both versions are supported for now,
    // for smooth transition to new API.
    func (a adminAPIHandlers) InfoCannedPolicy(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 12:41:13 GMT 2024
    - 77.5K bytes
    - Viewed (0)
Back to top