Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,372 for okdown (0.13 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/FileWatchingFilter.java

     *   and therefore these locations should not be watched to cut down on the number of watchers needed.
     *
     * - Locations known to be modified during a build might receive late file events that would invalidate VFS state we just
     *   captured after the changes; to avoid this, after a known modification we assume no further modifications will
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top