Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for deleteConfig (0.07 sec)

  1. cmd/batch-handlers.go

    	case j.Expire != nil:
    		return j.Expire.Validate(ctx, j, o)
    	}
    	return errInvalidArgument
    }
    
    func (j BatchJobRequest) delete(ctx context.Context, api ObjectLayer) {
    	deleteConfig(ctx, api, getJobPath(j))
    }
    
    func (j BatchJobRequest) getJobReportPath() (string, error) {
    	var fileName string
    	switch {
    	case j.Replicate != nil:
    		fileName = batchReplName
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 18 15:32:09 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  2. cmd/iam-object-store.go

    		return err
    	}
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	return json.Unmarshal(data, item)
    }
    
    func (iamOS *IAMObjectStore) deleteIAMConfig(ctx context.Context, path string) error {
    	return deleteConfig(ctx, iamOS.objAPI, path)
    }
    
    func (iamOS *IAMObjectStore) loadPolicyDocWithRetry(ctx context.Context, policy string, m map[string]PolicyDoc, retries int) error {
    	for {
    	retry:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 23:40:37 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top