Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for saturate (0.2 sec)

  1. CHANGELOG/CHANGELOG-1.22.md

        - [<code>CSIMigrationvSphere</code> feature gate has not migrated to new CRD APIs](#csimigrationvsphere-feature-gate-has-not-migrated-to-new-crd-apis)
        - [Workloads that saturate nodes with pods may see pods that fail due to node admission](#workloads-that-saturate-nodes-with-pods-may-see-pods-that-fail-due-to-node-admission)
        - [Etcd v3.5.[0-2] data corruption](#etcd-v350-2-data-corruption)
      - [Urgent Upgrade Notes](#urgent-upgrade-notes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.21.md

    - Fixed a bug in kubelet that will saturate CPU utilization after containerd got restarted. ([#97174](https://github.com/kubernetes/kubernetes/pull/97174), [@hanlins](https://github.com/hanlins)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/tidy.go

    	}
    
    	// Tidy aims to make 'go test' reproducible for any package in 'all', so we
    	// need to include test dependencies. For modules that specify go 1.15 or
    	// earlier this is a no-op (because 'all' saturates transitive test
    	// dependencies).
    	//
    	// However, with lazy loading (go 1.16+) 'all' includes only the packages that
    	// are transitively imported by the main module, not the test dependencies of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. pkg/controller/deployment/sync.go

    		}
    		_, _, err := dc.scaleReplicaSetAndRecordEvent(ctx, activeOrLatest, *(deployment.Spec.Replicas), deployment)
    		return err
    	}
    
    	// If the new replica set is saturated, old replica sets should be fully scaled down.
    	// This case handles replica set adoption during a saturated new replica set.
    	if deploymentutil.IsSaturated(deployment, newRS) {
    		for _, old := range controller.FilterActiveReplicaSets(oldRSs) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

                "format": "int32",
                "type": "integer"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  7. pkg/controller/deployment/util/deployment_util.go

    	// in its replica sets. Helps in separating scaling events from the rollout process and for
    	// determining if the new replica set for a deployment is really saturated.
    	DesiredReplicasAnnotation = "deployment.kubernetes.io/desired-replicas"
    	// MaxReplicasAnnotation is the maximum replicas a deployment can have at a given point, which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    	h := newMACGeneric(key)
    	h.Write(msg)
    	h.Sum(out)
    }
    
    func newMACGeneric(key *[32]byte) macGeneric {
    	m := macGeneric{}
    	initialize(key, &m.macState)
    	return m
    }
    
    // macState holds numbers in saturated 64-bit little-endian limbs. That is,
    // the value of [x0, x1, x2] is x[0] + x[1] * 2⁶⁴ + x[2] * 2¹²⁸.
    type macState struct {
    	// h is the main accumulator. It is to be interpreted modulo 2¹³⁰ - 5, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. pkg/controller/deployment/util/deployment_util_test.go

    	tRS.Status.AvailableReplicas = 1
    	tRS.Spec.Replicas = new(int32)
    	*tRS.Spec.Replicas = 1
    
    	t.Run("IsSaturated", func(t *testing.T) {
    		saturated := IsSaturated(&tDeployment, &tRS)
    		if !saturated {
    			t.Errorf("SetReplicasAnnotations Expected=true Obtained=false")
    		}
    	})
    	//Tear Down
    }
    
    func TestReplicasAnnotationsNeedUpdate(t *testing.T) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/hash/BloomFilterTest.java

                  // If this check ever fails, that means we need to either bump the
                  // number of expected insertions or don't run the test for so long.
                  // Don't forget, the bloom filter slowly saturates over time and the
                  // expected false positive probability goes up!
                  assertThat(bloomFilter.expectedFpp()).isLessThan(safetyFalsePositiveRate);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top