Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for miny (0.06 sec)

  1. doc/go_spec.html

    var s []string
    _ = min(s...)               // invalid: slice arguments are not permitted
    t := max("", "foo", "bar")  // t == "foo" (string kind)
    </pre>
    
    <p>
    For numeric arguments, assuming all NaNs are equal, <code>min</code> and <code>max</code> are
    commutative and associative:
    </p>
    
    <pre>
    min(x, y)    == min(y, x)
    min(x, y, z) == min(min(x, y), z) == min(x, min(y, z))
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "fsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // is the longest diagonal we will see. We make this the last dimension of
        // the output shape.
        int64_t max_diag_len =
            std::min(rows + std::min(k[1], static_cast<int64_t>(0)),
                     cols + std::min(-k[0], static_cast<int64_t>(0)));
    
        // The first dimension is the index vector dimension we'll use for gather.
        // It's 1 here, but will be 2 once we glue x and y together.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_LimitRangeItem = map[string]string{
    	"":                     "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.",
    	"type":                 "Type of resource that this limit applies to.",
    	"max":                  "Max usage constraints on this kind by resource name.",
    	"min":                  "Min usage constraints on this kind by resource name.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. ChangeLog.md

    - [`KT-60668`](https://youtrack.jetbrains.com/issue/KT-60668) KMP: check expect and actual annotations match when actual method is fake override
    - [`KT-60250`](https://youtrack.jetbrains.com/issue/KT-60250) K2: origin is set too many times for elvis operator
    - [`KT-60254`](https://youtrack.jetbrains.com/issue/KT-60254) K2: Extra unset type argument on Java field reference
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top