Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for exponential (0.2 sec)

  1. ChangeLog.md

    #### Performance Improvements
    
    - [`KT-38101`](https://youtrack.jetbrains.com/issue/KT-38101) Exponential analysis of += calls
    
    #### Fixes
    
    - [`KT-64187`](https://youtrack.jetbrains.com/issue/KT-64187) K2: False positive ABSTRACT_NOT_IMPLEMENTED caused by the fact that common code sees platform code of its dependencies
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.6.md

    ## Changelog since v1.6.4
    
    ### Other notable changes
    
    * Fix iSCSI iSER mounting. ([#47281](https://github.com/kubernetes/kubernetes/pull/47281), [@mtanino](https://github.com/mtanino))
    * Added exponential backoff to Azure cloudprovider ([#46660](https://github.com/kubernetes/kubernetes/pull/46660), [@jackfrancis](https://github.com/jackfrancis))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.8.md

    * kubeadm: Modifications to cluster-internal resources installed by kubeadm will be overwritten when upgrading from v1.6 to v1.7. ([#47081](https://github.com/kubernetes/kubernetes/pull/47081), [@luxas](https://github.com/luxas))
    * Added exponential backoff to Azure cloudprovider ([#46660](https://github.com/kubernetes/kubernetes/pull/46660), [@jackfrancis](https://github.com/jackfrancis))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    		res, err := cc.RoundTrip(req)
    		if err != nil && retry <= 6 {
    			roundTripErr := err
    			if req, err = http2shouldRetryRequest(req, err); err == nil {
    				// After the first retry, do exponential backoff with 10% jitter.
    				if retry == 0 {
    					t.vlogf("RoundTrip retrying after failure: %v", roundTripErr)
    					continue
    				}
    				backoff := float64(uint(1) << (uint(retry) - 1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top