Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for negatives (0.26 sec)

  1. pkg/apis/batch/validation/validation_test.go

    		t.Run(k, func(t *testing.T) {
    			if errs := ValidateJob(&v.job, v.opts); len(errs) != 0 {
    				t.Errorf("Got unexpected validation errors: %v", errs)
    			}
    		})
    	}
    	negative := int32(-1)
    	negative64 := int64(-1)
    	errorCases := map[string]struct {
    		opts JobValidationOptions
    		job  batch.Job
    	}{
    		`spec.managedBy: Too long: may not be longer than 63`: {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  2. pkg/apis/apps/validation/validation_test.go

    			expectErr: false,
    		},
    		"invalid : minReadySeconds enabled, negative": {
    			ss:        generateStatefulSetSpec(-1),
    			expectErr: true,
    		},
    		"valid : minReadySeconds enabled, very large value": {
    			ss:        generateStatefulSetSpec(2147483647),
    			expectErr: false,
    		},
    		"invalid : minReadySeconds enabled, large negative": {
    			ss:        generateStatefulSetSpec(-2147483648),
    			expectErr: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    			errs = appendErrors(errs, fmt.Errorf("http1 max pending requests must be non-negative"))
    		}
    		if httpSettings.Http2MaxRequests < 0 {
    			errs = appendErrors(errs, fmt.Errorf("http2 max requests must be non-negative"))
    		}
    		if httpSettings.MaxRequestsPerConnection < 0 {
    			errs = appendErrors(errs, fmt.Errorf("max requests per connection must be non-negative"))
    		}
    		if httpSettings.MaxRetries < 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. src/main/webapp/css/bootstrap.min.css

    fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}....
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Dec 25 08:05:52 UTC 2019
    - 155.8K bytes
    - Viewed (0)
  5. src/main/webapp/css/admin/bootstrap.min.css

    fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}....
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 155.8K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    type, called the element type.
    The number of elements is called the length of the array and is never negative.
    </p>
    
    <pre class="ebnf">
    ArrayType   = "[" ArrayLength "]" ElementType .
    ArrayLength = Expression .
    ElementType = Type .
    </pre>
    
    <p>
    The length is part of the array's type; it must evaluate to a
    non-negative <a href="#Constants">constant</a>
    <a href="#Representability">representable</a> by a value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/helpers_test.go

    			evictionSoftGracePeriod: map[string]string{},
    			evictionMinReclaim:      map[string]string{},
    			expectErr:               true,
    			expectThresholds:        []evictionapi.Threshold{},
    		},
    		"hard-signal-negative": {
    			allocatableConfig:       []string{},
    			evictionHard:            map[string]string{"memory.available": "-150Mi"},
    			evictionSoft:            map[string]string{},
    			evictionSoftGracePeriod: map[string]string{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        }
    
        return true;
      }
    
      // Slices the input `value` if there are negative padding values in
      // `explicit_padding`.
      Value SliceNegativePadding(Value value, ArrayRef<int64_t> explicit_padding,
                                 ConversionPatternRewriter& rewriter) const {
        // If no padding is negative return the input as is.
        if (llvm::all_of(explicit_padding, [](int64_t pad) { return pad >= 0; })) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          return op.emitOpError() << "requires depth to be a scalar";
        int64_t depth = depth_attr.getValues<APInt>()[0].getSExtValue();
        if (depth < 0) {
          return op.emitOpError() << "depth must be non-negative, got: " << depth;
        }
      }
    
      return success();
    }
    
    static TensorType InferOneHotOpType(Value indices, Value depth, Value on_value,
                                        Value off_value, IntegerAttr axis) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/asmz.go

    	op_LNDBR   uint32 = 0xB311 // FORMAT_RRE        LOAD NEGATIVE (long BFP)
    	op_LNDFR   uint32 = 0xB371 // FORMAT_RRE        LOAD NEGATIVE (long)
    	op_LNDR    uint32 = 0x2100 // FORMAT_RR         LOAD NEGATIVE (long HFP)
    	op_LNEBR   uint32 = 0xB301 // FORMAT_RRE        LOAD NEGATIVE (short BFP)
    	op_LNER    uint32 = 0x3100 // FORMAT_RR         LOAD NEGATIVE (short HFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top