Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 883 for greater (0.28 sec)

  1. cmd/signature-v4-parser_test.go

    					"abcd",
    				},
    				// Date
    				queryTime,
    				// Expires.
    				100 * time.Second,
    			},
    			expectedErrCode: ErrNone,
    		},
    
    		// Test case - 9.
    		// Test case with value greater than 604800 in X-Amz-Expires header.
    		{
    			inputQueryKeyVals: []string{
    				// valid  "X-Amz-Algorithm" header.
    				"X-Amz-Algorithm", signV4Algorithm,
    				// valid  "X-Amz-Credential" header.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            then:
            def e = thrown(GradleException)
            e.message == "Target Java version: '5' is not a supported target version. It must be equal to or greater than 7"
        }
    
        def "should reject invalid package name: #invalidPackageName"() {
            given:
            projectLayoutRegistry.get("java-library") >> defaultGenerator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	// from that set. sharedConfigMapsPerPod is used if greater.
    	sharedConfigMapsPerNamespace int
    	// sharedSecretsPerNamespaces defines number of shared secrets in a given
    	// namespace. Each pod then mounts a random set of size `sharedSecretsPerPod`
    	// from that set. sharedSecretsPerPod is used if greater.
    	sharedSecretsPerNamespace int
    	// sharedPVCsPerNamespaces defines number of shared pvcs in a given
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_calibration_statistics_saver.mlir

        %cst_0 = "tf.Const"() <{value = dense<1.000000e+01> : tensor<f32>}> {device = ""} : () -> tensor<f32>
        %0 = "tf.Sum"(%arg0, %cst) <{keep_dims = false}> {device = ""} : (tensor<1x4xf32>, tensor<2xi32>) -> tensor<f32>
        %1 = "tf.Greater"(%0, %cst_0) {device = ""} : (tensor<f32>, tensor<f32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/validation/validation_test.go

    			config: repeatedSchedulerName,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeDuplicate,
    					Field: "profiles[1].schedulerName",
    				},
    			},
    		},
    		"greater-than-100-profile-percentage-of-nodes-to-score": {
    			config: profilePercentageOfNodesToScore101,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/magic.go

    // so RotRight(x, k) > ⎣x/(2^k)⎦
    //
    // Finally, if x > a and has k trailing zero bits, then RotRight(x, k) == ⎣x/(2^k)⎦
    // and ⎣x/(2^k)⎦ must be greater than ⎣a/(2^k)⎦, that is the top n-k bits of x must
    // be greater than the top n-k bits of a because the rest of x bits are zero.
    //
    // So the two conditions about can be replaced with the single test
    //
    // RotRight(x*m mod 2^n, k) <= ⎣(2^n - 1)/c⎦
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. hack/make-rules/test.sh

          kube::test::usage
          exit 0
          ;;
        p)
          PARALLEL="${OPTARG}"
          if ! isnum "${PARALLEL}" || [[ "${PARALLEL}" -le 0 ]]; then
            kube::log::usage "'$0': argument to -p must be numeric and greater than 0"
            kube::test::usage
            exit 1
          fi
          ;;
        i)
          kube::log::usage "'$0': use GOFLAGS='-count <num-iterations>'"
          kube::test::usage
          exit 1
          ;;
        :)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. pkg/volume/emptydir/empty_dir_test.go

    		t.Errorf("Unexpected value for empty directory; expected %v, got %v", e, a)
    	}
    	if metrics.Capacity.Value() <= 0 {
    		t.Errorf("Expected Capacity to be greater than 0")
    	}
    	if metrics.Available.Value() <= 0 {
    		t.Errorf("Expected Available to be greater than 0")
    	}
    }
    
    func TestGetHugePagesMountOptions(t *testing.T) {
    	testCases := map[string]struct {
    		pod            *v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK: return %[[RESULT]]
        func.return %bounded : tensor<i32>
      }
    
      // CHECK-LABEL: func @greater
      func.func @greater(%arg0: tensor<2xi32>, %arg1: tensor<2xi32>) -> tensor<2xi1> {
        // CHECK-NEXT:  mhlo.compare GT, %arg0, %arg1
        %0 = "tf.Greater"(%arg0, %arg1) : (tensor<2xi32>, tensor<2xi32>) -> tensor<2xi1>
        func.return %0: tensor<2xi1>
      }
    
      // CHECK-LABEL: batchmatmulv2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  10. guava/src/com/google/common/cache/Striped64.java

                Cell r = new Cell(x); // Optimistically create
                if (busy == 0 && casBusy()) {
                  boolean created = false;
                  try { // Recheck under lock
                    Cell[] rs;
                    int m, j;
                    if ((rs = cells) != null && (m = rs.length) > 0 && rs[j = (m - 1) & h] == null) {
                      rs[j] = r;
                      created = true;
                    }
                  } finally {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top