Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for iops (0.1 sec)

  1. cmd/erasure-object.go

    	}
    	if !readData {
    		for i := range v2bufs {
    			metaDataPoolPut(v2bufs[i])
    		}
    	}
    
    	// Return all the metadata.
    	return metaFileInfos, errs
    }
    
    // Checking if an object is dangling costs some IOPS; hence implementing this function
    // which decides which condition it is useful to check if an object is dangling
    //
    //	  errs: errors from reading xl.meta in all disks
    //	   err: reduced errs
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 80.4K bytes
    - Viewed (0)
  2. generics.go

    	v := &g[T]{
    		db:  db,
    		ops: make([]op, 0, 5),
    	}
    
    	if len(opts) > 0 {
    		v.ops = append(v.ops, func(db *DB) *DB {
    			return db.Clauses(opts...)
    		})
    	}
    
    	v.createG = &createG[T]{
    		chainG: chainG[T]{
    			execG: execG[T]{g: v},
    		},
    	}
    	return v
    }
    
    type g[T any] struct {
    	*createG[T]
    	db  *DB
    	ops []op
    }
    
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    ---
    hide:
      - navigation
    ---
    
    # Release Notes
    
    ## Latest Changes
    
    ### Docs
    
    * 📝 Add documentation for Behind a Proxy - Proxy Forwarded Headers, using `--forwarded-allow-ips="*"`. PR [#14028](https://github.com/fastapi/fastapi/pull/14028) by [@tiangolo](https://github.com/tiangolo).
    * 📝 Add deprecation info block about `dict()` in `docs/tutorial/body.md`. PR [#13906](https://github.com/fastapi/fastapi/pull/13906) by [@jomkv](https://github.com/jomkv).
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
Back to top