Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Resizing (0.2 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

        Iterators.addAll(set, elements);
        return set;
      }
    
      /**
       * Returns a new hash set using the smallest initial table size that can hold {@code expectedSize}
       * elements without resizing. Note that this is not what {@link HashSet#HashSet(int)} does, but it
       * is what most users want and expect it to do.
       *
       * <p>This behavior can't be broadly guaranteed, but has been tested with OpenJDK 1.7 and 1.8.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Sets.java

        Iterators.addAll(set, elements);
        return set;
      }
    
      /**
       * Returns a new hash set using the smallest initial table size that can hold {@code expectedSize}
       * elements without resizing. Note that this is not what {@link HashSet#HashSet(int)} does, but it
       * is what most users want and expect it to do.
       *
       * <p>This behavior can't be broadly guaranteed, but has been tested with OpenJDK 1.7 and 1.8.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// If resize results in net pod resource increase, set pod cgroup config before resizing containers.
    	// If resize results in net pod resource decrease, set pod cgroup config after resizing containers.
    	// If an error occurs at any point, abort. Let future syncpod iterations retry the unfinished stuff.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

       * is {@code 60}, and the concurrency level is {@code 8}, then eight segments are created, each
       * having a hash table of size eight. Providing a large enough estimate at construction time
       * avoids the need for expensive resizing operations later, but setting this value unnecessarily
       * high wastes memory.
       *
       * @return this {@code CacheBuilder} instance (for chaining)
       * @throws IllegalArgumentException if {@code initialCapacity} is negative
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    html input[disabled] {
    	cursor: default;
    }
    
    /** 1. Address box sizing set to `content-box` in IE 8/9. 2. Remove excess padding in IE 8/9. */
    input[type="checkbox"],
    input[type="radio"] {
    	box-sizing: border-box;
    	/* 1 */
    	padding: 0;
    	/* 2 */
    }
    
    /** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/minio-dashboard.json

            "reduceOptions": {
              "calcs": [
                "lastNotNull"
              ],
              "fields": "",
              "values": false
            },
            "showUnfilled": true,
            "sizing": "auto",
            "valueMode": "color"
          },
          "pluginVersion": "10.4.0",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// post-quantum key exchange. To disable it, set CurvePreferences explicitly
    	// or use the GODEBUG=tlskyber=0 environment variable.
    	CurvePreferences []CurveID
    
    	// DynamicRecordSizingDisabled disables adaptive sizing of TLS records.
    	// When true, the largest possible TLS record size is always used. When
    	// false, the size of TLS records may be adjusted in an attempt to
    	// improve latency.
    	DynamicRecordSizingDisabled bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set_test.go

    		if activePods != *(rsSpec.Spec.Replicas) {
    			t.Fatalf("Unexpected number of active pods, expected %d, got %d", *(rsSpec.Spec.Replicas), activePods)
    		}
    		// Replenish the pod list, since we cut it down sizing up
    		pods = newPodList(nil, int(replicas), v1.PodRunning, labelMap, rsSpec, "pod")
    	}
    }
    
    func TestControllerBurstReplicas(t *testing.T) {
    	doTestControllerBurstReplicas(t, 5, 30)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	p.lock.Unlock()
    }
    
    // isPodResourcesResizedDown returns true if a pod CPU and/or memory resize request has been
    // admitted by kubelet, is 'InProgress', and results in a net sizing down of updated resources.
    // It returns false if either CPU or memory resource is net resized up, or if no resize is in progress.
    func isPodResourcesResizedDown(pod *v1.Pod) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top