Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,828 for okdown (0.1 sec)

  1. src/math/big/ftoa.go

    	for i, m := range d.mant {
    		l := lower.at(i)
    		u := upper.at(i)
    
    		// Okay to round down (truncate) if lower has a different digit
    		// or if lower is inclusive and is exactly the result of rounding
    		// down (i.e., and we have reached the final digit of lower).
    		okdown := l != m || inclusive && i+1 == len(lower.mant)
    
    		// Okay to round up if upper has a different digit and either upper
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. src/strconv/ftoa.go

    		}
    		u := byte('0') // upper digit
    		if ui < upper.nd {
    			u = upper.d[ui]
    		}
    
    		// Okay to round down (truncate) if lower has a different digit
    		// or if lower is inclusive and is exactly the result of rounding
    		// down (i.e., and we have reached the final digit of lower).
    		okdown := l != m || inclusive && li+1 == lower.nd
    
    		switch {
    		case upperdelta == 0 && m+1 < u:
    			// Example:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. cluster/kube-down.sh

    # limitations under the License.
    
    # Tear down a Kubernetes cluster.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
        source "${KUBE_ROOT}/cluster/env.sh"
    fi
    
    source "${KUBE_ROOT}/cluster/kube-util.sh"
    
    echo "Bringing down cluster using provider: $KUBERNETES_PROVIDER"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 14 07:12:08 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. releasenotes/notes/pilot-load-dns-cert-known-location-deprecate-flags.yaml

    issue:
      - 36916
    
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Improved** Pilot will now load its DNS serving certificate from well known locations:
      ```
      /var/run/secrets/istiod/tls/tls.crt
      /var/run/secrets/istiod/tls/tls.key
      /var/run/secrets/istiod/ca/root-cert.pem
      ```
      The CA path will alternatively be loaded from: `/var/run/secrets/tls/ca.crt`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 29 22:41:21 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. hack/e2e-internal/e2e-down.sh

    xichengliudui <******@****.***> 1550548203 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 899 bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // considered while scaling up or scaling down.
      // StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour).
      // If not set, use the default values:
      // - For scale up: 0 (i.e. no stabilization is done).
      // - For scale down: 300 (i.e. the stabilization window is 300 seconds long).
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v2/generated.proto

      // considered while scaling up or scaling down.
      // StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour).
      // If not set, use the default values:
      // - For scale up: 0 (i.e. no stabilization is done).
      // - For scale down: 300 (i.e. the stabilization window is 300 seconds long).
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    	"containerResource": "containerResource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

      // considered while scaling up or scaling down.
      // StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour).
      // If not set, use the default values:
      // - For scale up: 0 (i.e. no stabilization is done).
      // - For scale down: 300 (i.e. the stabilization window is 300 seconds long).
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/types.go

    	// behavior configures the scaling behavior of the target
    	// in both Up and Down directions (scaleUp and scaleDown fields respectively).
    	// If not set, the default HPAScalingRules for scale up and scale down are used.
    	// +optional
    	Behavior *HorizontalPodAutoscalerBehavior
    }
    
    // HorizontalPodAutoscalerBehavior configures a scaling behavior for Up and Down direction
    // (scaleUp and scaleDown fields respectively).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
Back to top