Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 207 for Smallest (0.29 sec)

  1. src/math/const.go

    	Log10E = 1 / Ln10
    )
    
    // Floating-point limit values.
    // Max is the largest finite value representable by the type.
    // SmallestNonzero is the smallest positive, non-zero value representable by the type.
    const (
    	MaxFloat32             = 0x1p127 * (1 + (1 - 0x1p-23)) // 3.40282346638528859811704183484516925440e+38
    	SmallestNonzeroFloat32 = 0x1p-126 * 0x1p-23            // 1.40129846
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 14:07:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. src/math/big/ratconv_test.go

    	"long:1.00000000000000011102230246251565404236316680908203125" + strings.Repeat("0", 10000) + "1",
    
    	// Smallest denormal, 2^(-1022-52)
    	"4.940656458412465441765687928682213723651e-324",
    	// Half of smallest denormal, 2^(-1022-53)
    	"2.470328229206232720882843964341106861825e-324",
    	// A little more than the exact half of smallest denormal
    	// 2^-1075 + 2^-1100.  (Rounds to 1p-1074.)
    	"2.470328302827751011111470718709768633275e-324",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  3. cluster/addons/metrics-server/metrics-server-deployment.yaml

              - --threshold=5
              - --deployment=metrics-server-v0.7.1
              - --container=metrics-server
              - --poll-period=30000
              - --estimator=exponential
              # Specifies the smallest cluster (defined in number of nodes)
              # resources will be scaled to.
              - --minClusterSize={{ metrics_server_min_cluster_size }}
              # Use kube-apiserver metrics to avoid periodically listing nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

      fine("${queue.name} ${String.format("%-22s", message)}: ${task.name}")
    }
    
    /**
     * Returns a duration in the nearest whole-number units like "999 µs" or "  1 s ". This rounds 0.5
     * units away from 0 and 0.499 towards 0. The smallest unit this returns is "µs"; the largest unit
     * it returns is "s". For values in [-499..499] this returns "  0 µs".
     *
     * The returned string attempts to be column-aligned to 6 characters. For negative and large values
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/image/png/paeth.go

    const intSize = 32 << (^uint(0) >> 63)
    
    func abs(x int) int {
    	// m := -1 if x < 0. m := 0 otherwise.
    	m := x >> (intSize - 1)
    
    	// In two's complement representation, the negative number
    	// of any number (except the smallest one) can be computed
    	// by flipping all the bits and add 1. This is faster than
    	// code with a branch.
    	// See Hacker's Delight, section 2-4.
    	return (x ^ m) - m
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.7K bytes
    - Viewed (0)
  6. pkg/scheduler/util/pod_resources.go

    // will be treated as having requested the amount indicated below, for the purpose
    // of computing priority only. This ensures that when scheduling zero-request pods, such
    // pods will not all be scheduled to the node with the smallest in-use request,
    // and that when scheduling regular pods, such pods will not see zero-request pods as
    // consuming no resources whatsoever. We chose these values to be similar to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 01 06:25:30 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/scheduling/v1alpha1/generated.proto

      // Only one PriorityClass can be marked as `globalDefault`. However, if more than
      // one PriorityClasses exists with their `globalDefault` field set to true,
      // the smallest value of such global default PriorityClasses will be used as the default priority.
      // +optional
      optional bool globalDefault = 3;
    
      // description is an arbitrary string that usually provides guidelines on
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/scheduling/v1/types.go

    	// Only one PriorityClass can be marked as `globalDefault`. However, if more than
    	// one PriorityClasses exists with their `globalDefault` field set to true,
    	// the smallest value of such global default PriorityClasses will be used as the default priority.
    	// +optional
    	GlobalDefault bool `json:"globalDefault,omitempty" protobuf:"bytes,3,opt,name=globalDefault"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/scheduling/v1/types_swagger_doc_generated.go

    	"description":      "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/scheduling/v1alpha1/generated.proto

      // Only one PriorityClass can be marked as `globalDefault`. However, if more than
      // one PriorityClasses exists with their `globalDefault` field set to true,
      // the smallest value of such global default PriorityClasses will be used as the default priority.
      // +optional
      optional bool globalDefault = 3;
    
      // description is an arbitrary string that usually provides guidelines on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top