Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for decreasing (0.13 sec)

  1. cmd/erasure-healing_test.go

    	var opts ObjectOptions
    
    	err = objLayer.MakeBucket(ctx, bucket, MakeBucketOptions{})
    	if err != nil {
    		t.Fatalf("Failed to make a bucket - %v", err)
    	}
    
    	// Create an object with multiple parts uploaded in decreasing
    	// part number.
    	res, err := objLayer.NewMultipartUpload(ctx, bucket, object, opts)
    	if err != nil {
    		t.Fatalf("Failed to create a multipart upload - %v", err)
    	}
    
    	var uploadedParts []CompletePart
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    		if minimumAllowedReplicas < scaleDownLimit {
    			minimumAllowedReplicas = scaleDownLimit
    			possibleLimitingReason = "ScaleDownLimit"
    			possibleLimitingMessage = "the desired replica count is decreasing faster than the maximum scale rate"
    		} else {
    			possibleLimitingMessage = "the desired replica count is less than the minimum replica count"
    			possibleLimitingReason = "TooFewReplicas"
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    // PodManagementPolicyType defines the policy for creating pods under a stateful set.
    // +enum
    type PodManagementPolicyType string
    
    const (
    	// OrderedReadyPodManagement will create pods in strictly increasing order on
    	// scale up and strictly decreasing order on scale down, progressing only when
    	// the previous pod is ready or terminated. At most one pod will be changed
    	// at any time.
    	OrderedReadyPodManagement PodManagementPolicyType = "OrderedReady"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types.go

    // PodManagementPolicyType defines the policy for creating pods under a stateful set.
    type PodManagementPolicyType string
    
    const (
    	// OrderedReadyPodManagement will create pods in strictly increasing order on
    	// scale up and strictly decreasing order on scale down, progressing only when
    	// the previous pod is ready or terminated. At most one pod will be changed
    	// at any time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    	p.push(re)
    	return t, nil
    }
    
    // cleanClass sorts the ranges (pairs of elements of r),
    // merges them, and eliminates duplicates.
    func cleanClass(rp *[]rune) []rune {
    
    	// Sort by lo increasing, hi decreasing to break ties.
    	sort.Sort(ranges{rp})
    
    	r := *rp
    	if len(r) < 2 {
    		return r
    	}
    
    	// Merge abutting, overlapping.
    	w := 2 // write index
    	for i := 2; i < len(r); i += 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    	// that some future caller of find *must* observe the new high index. That caller
    	// (or any other racing with it), then makes searchAddr positive before continuing, bringing
    	// us back to our monotonically decreasing steady-state.
    	//
    	// A pageAlloc lock serializes updates between min, max, and searchAddr, so abs(searchAddr)
    	// is always guaranteed to be >= min and < max (converted to heap addresses).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/time/time.go

    		u0x, u0 := u0, u0+tmp
    		if u0 < u0x {
    			u1++
    		}
    		u0x, u0 = u0, u0+uint64(nsec)
    		if u0 < u0x {
    			u1++
    		}
    
    		// Compute remainder by subtracting r<<k for decreasing k.
    		// Quotient parity is whether we subtract on last round.
    		d1 := uint64(d)
    		for d1>>63 != 1 {
    			d1 <<= 1
    		}
    		d0 := uint64(0)
    		for {
    			qmod2 = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. plugin/pkg/admission/resourcequota/admission_test.go

    	if err != nil {
    		t.Errorf("Expected no error for decreasing a limited resource without quota, got %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | `@link:{javadocPath}/org/gradle/api/tasks/Console.html[Console]`
    | Any type
    | Indicates that the property is neither an input nor an output. It simply affects the console output of the task in some way, such as increasing or decreasing the verbosity of the task.
    
    | `@link:{javadocPath}/org/gradle/api/tasks/Internal.html[Internal]`
    | Any type
    | Indicates that the property is used internally but is neither an input nor an output.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

                      "already exists, removing it and recreating it")
          $hns_network | Remove-HnsNetwork
          $hns_network = $null
        }
        else {
          Log-Output ("Skip: initial '$INITIAL_HNS_NETWORK' HNS network " +
                      "already exists, not recreating it")
          return
        }
      }
      Log-Output ("Creating initial HNS network to force creation of " +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top