Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for negatives (0.53 sec)

  1. src/net/http/server.go

    	// let Handlers make decisions on a per-request basis.
    	// A zero or negative value means there will be no timeout.
    	WriteTimeout time.Duration
    
    	// IdleTimeout is the maximum amount of time to wait for the
    	// next request when keep-alives are enabled. If zero, the value
    	// of ReadTimeout is used. If negative, or if zero and ReadTimeout
    	// is zero or negative, there is no timeout.
    	IdleTimeout time.Duration
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "format": "int64",
                "type": "integer"
              },
              "value": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  3. src/reflect/value.go

    // allocate the memory.
    func (v Value) Grow(n int) {
    	v.mustBeAssignable()
    	v.mustBe(Slice)
    	v.grow(n)
    }
    
    // grow is identical to Grow but does not check for assignability.
    func (v Value) grow(n int) {
    	p := (*unsafeheader.Slice)(v.ptr)
    	switch {
    	case n < 0:
    		panic("reflect.Value.Grow: negative len")
    	case p.Len+n < 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Div64 <t> n (Const64 [c])) && c < 0 && c != -1<<63 => (Neg64 (Div64 <t> n (Const64 <t> [-c])))
    
    // Dividing by the most-negative number.  Result is always 0 except
    // if the input is also the most-negative number.
    // We can detect that using the sign bit of x & -x.
    (Div8  <t> x (Const8  [-1<<7 ])) => (Rsh8Ux64  (And8  <t> x (Neg8  <t> x)) (Const64 <typ.UInt64> [7 ]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "is-extglob": "^2.1.1"
          },
          "engines": {
            "node": ">=0.10.0"
          }
        },
        "node_modules/is-negative-zero": {
          "version": "2.0.2",
          "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
          "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

    BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows.\n\nBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )\n\nThe value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

    BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows.\n\nBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )\n\nThe value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        int axis = 0;
        for (const auto& begin_i : llvm::enumerate(begin)) {
          if (begin_i.value().getSExtValue() < 0) {
            return op.emitError(
                llvm::formatv("begin[{0}] cannot be negative", axis));
          }
          axis++;
        }
      }
    
      DenseIntElementsAttr size;
      if (matchPattern(op.getSize(), m_Constant(&size))) {
        int axis = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

                "x-kubernetes-list-type": "atomic"
              },
              "gracePeriodSeconds": {
                "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

                "x-kubernetes-list-type": "atomic"
              },
              "gracePeriodSeconds": {
                "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
Back to top