Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for toDel (0.01 sec)

  1. cmd/data-scanner.go

    			}
    			applyExpiryRule(event, lcEventSrc_Scanner, oi)
    
    		case lifecycle.DeleteVersionAction: // noncurrent versions expiration
    			opts := objOpts[idx]
    			remainingVersions--
    			size = 0
    			toDel = append(toDel, ObjectToDelete{
    				ObjectV: ObjectV{
    					ObjectName: opts.Name,
    					VersionID:  opts.VersionID,
    				},
    			})
    			noncurrentEvents = append(noncurrentEvents, event)
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 45.5K bytes
    - Viewed (0)
  2. cmd/object-api-multipart_test.go

    	}
    
    	var dataDir string
    	for _, folder := range dataDirs {
    		if strings.HasSuffix(folder, SlashSeparator) {
    			dataDir = folder
    			break
    		}
    	}
    
    	toDel := (len(erasureDisks) / 2) + 1
    	for _, disk := range erasureDisks[:toDel] {
    		disk.DeleteBulk(context.Background(), minioMetaMultipartBucket, []string{pathJoin(uploadIDPath, dataDir, "part.2")}...)
    	}
    
    	partInfos := []ListPartsInfo{
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 89.4K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial005.py hl[14] *}
    
    Now try sending an invalid item like:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    You will receive a response telling you that the data is invalid containing the received body:
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top