Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 117 for Retries (0.14 sec)

  1. pkg/config/validation/validation_test.go

    						"clusterID": nil,
    					},
    				}},
    			},
    			"tag 'clusterID' may not have a nil value", "",
    		},
    		{
    			"bad metrics operation",
    			&telemetry.Telemetry{
    				Metrics: []*telemetry.Metrics{{
    					Overrides: []*telemetry.MetricsOverrides{
    						{
    							TagOverrides: map[string]*telemetry.MetricsOverrides_TagOverride{
    								"my-tag": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      fi
    }
    
    # Robustly try to create an instance template.
    # $1: The name of the instance template.
    # $2: The scopes flag.
    # $3: String of comma-separated metadata-from-file entries.
    # $4: String of comma-separated metadata (key=value) entries.
    # $5: the node OS ("linux" or "windows").
    function create-node-template() {
      detect-project
      detect-subnetworks
      local template_name="$1"
      local metadata_values="$4"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    		}
    	}
    }
    
    // save mrf entries to nodenamehex.bin
    func (p *ReplicationPool) saveMRFEntries(ctx context.Context, entries map[string]MRFReplicateEntry) {
    	if !p.initialized() {
    		return
    	}
    	atomic.StoreUint64(&globalReplicationStats.mrfStats.LastFailedCount, uint64(len(entries)))
    	if len(entries) == 0 {
    		return
    	}
    
    	v := MRFReplicateEntries{
    		Entries: entries,
    		Version: mrfMetaVersion,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

       * indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = 1 << 30;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

       * indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = 1 << 30;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

    * The implicit registration of Prometheus metrics for request count and latency have been removed, and a plug-able interface was added. If you were using our client libraries in your own binaries and want these metrics, add the following to your imports in the main package: "k8s.io/pkg/client/metrics/prometheus".  ([#30638](https://github.com/kubernetes/kubernetes/pull/30638), [@krousey](https://github.com/krousey))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    			db.freeConn = append(db.freeConn, dc)
    			db.startCleanerLocked()
    			return true
    		}
    		db.maxIdleClosed++
    	}
    	return false
    }
    
    // maxBadConnRetries is the number of maximum retries if the driver returns
    // driver.ErrBadConn to signal a broken connection before forcing a new
    // connection to be opened.
    const maxBadConnRetries = 2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	simulateBadConn := func(name string, hook *func() bool, op func() error) {
    		broken, retried := false, false
    		numOpen := db.numOpen
    
    		// simulate a broken connection on the first try
    		*hook = func() bool {
    			if !broken {
    				broken = true
    				return true
    			}
    			retried = true
    			return false
    		}
    
    		if err := op(); err != nil {
    			t.Errorf(name+": %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. cmd/storage-datatypes_gen.go

    			if err != nil {
    				err = msgp.WrapError(err, "Entries")
    				return
    			}
    			if cap(z.Entries) >= int(zb0002) {
    				z.Entries = (z.Entries)[:zb0002]
    			} else {
    				z.Entries = make([]string, zb0002)
    			}
    			for za0001 := range z.Entries {
    				z.Entries[za0001], err = dc.ReadString()
    				if err != nil {
    					err = msgp.WrapError(err, "Entries", za0001)
    					return
    				}
    			}
    		default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    	"k8s.io/kubernetes/pkg/controller/podautoscaler/metrics"
    	"k8s.io/kubernetes/pkg/controller/podautoscaler/monitor"
    	"k8s.io/kubernetes/pkg/controller/util/selectors"
    	"k8s.io/kubernetes/test/utils/ktesting"
    	cmapi "k8s.io/metrics/pkg/apis/custom_metrics/v1beta2"
    	emapi "k8s.io/metrics/pkg/apis/external_metrics/v1beta1"
    	metricsapi "k8s.io/metrics/pkg/apis/metrics/v1beta1"
    	metricsfake "k8s.io/metrics/pkg/client/clientset/versioned/fake"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top