Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ListObjectsV1 (0.07 seconds)

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

  1. cmd/api-router.go

    		for _, r := range rejectedBucketAPIs {
    			router.Methods(r.methods...).
    				HandlerFunc(collectAPIStats(r.api, httpTraceAll(notImplementedHandler))).
    				Queries(r.queries...)
    		}
    
    		// S3 ListObjectsV1 (Legacy)
    		router.Methods(http.MethodGet).
    			HandlerFunc(s3APIMiddleware(api.ListObjectsV1Handler))
    	}
    
    	// Root operation
    
    	// ListenNotification
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Oct 24 04:05:19 GMT 2025
    - 23.3K bytes
    - Click Count (0)
  2. cmd/server_test.go

    			[]string{
    				"<Key>obj2</Key>",
    				"<Key>obj2/</Key>",
    			},
    		},
    	}
    
    	for _, testCase := range testCases {
    		// create listObjectsV1 request with valid parameters
    		request, err = newTestSignedRequest(http.MethodGet, testCase.getURL, 0, nil, s.accessKey, s.secretKey, s.signer)
    		c.Assert(err, nil)
    		// execute the HTTP request.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 118.1K bytes
    - Click Count (0)
  3. cmd/api-response.go

    		prefixItem := CommonPrefix{}
    		prefixItem.Prefix = s3EncodeName(prefix, encodingType)
    		prefixes = append(prefixes, prefixItem)
    	}
    	data.CommonPrefixes = prefixes
    	return data
    }
    
    // generates an ListObjectsV1 response for the said bucket with other enumerated options.
    func generateListObjectsV1Response(ctx context.Context, bucket, prefix, marker, delimiter, encodingType string, maxKeys int, resp ListObjectsInfo) ListObjectsResponse {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Oct 24 04:05:19 GMT 2025
    - 35K bytes
    - Click Count (0)
Back to Top