Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for autotune (0.26 sec)

  1. cmd/speedtest.go

    )
    
    const speedTest = "speedtest"
    
    type speedTestOpts struct {
    	objectSize       int
    	concurrencyStart int
    	concurrency      int
    	duration         time.Duration
    	autotune         bool
    	storageClass     string
    	bucketName       string
    	enableSha256     bool
    }
    
    // Get the max throughput and iops numbers.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Jan 28 18:04:17 GMT 2024
    - 9K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    	if !sufficientCapacity {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, AdminError{
    			Code:       "XMinioSpeedtestInsufficientCapacity",
    			Message:    capacityErrMsg,
    			StatusCode: http.StatusInsufficientStorage,
    		}), r.URL)
    		return
    	}
    
    	if autotune && !canAutotune {
    		autotune = false
    	}
    
    	if customBucket == "" {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  3. RELEASE.md

            behavior, set `inject_prefetch=True` in
            `tf.data.experimental.OptimizationOptions`.
        *   Added a new value to `tf.data.Options.autotune.autotune_algorithm`:
            `STAGE_BASED`. If the autotune algorithm is set to `STAGE_BASED`, then
            it runs a new algorithm that can get the same performance with lower
            CPU/memory usage.
        *   Added
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  4. tests/test_dependency_normal_exceptions.py

    
    @app.put("/user/{user_id}")
    def put_user(user_id: str, name: str = Body(), db: dict = Depends(get_database)):
        db[user_id] = name
        return {"message": "OK"}
    
    
    @pytest.fixture(autouse=True)
    def reset_state_and_db():
        global fake_database
        global state
        fake_database = initial_fake_database.copy()
        state = initial_state.copy()
    
    
    client = TestClient(app)
    
    
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Feb 24 23:06:37 GMT 2024
    - 1.9K bytes
    - Viewed (0)
Back to top