Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 236 for casts (0.06 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    #endif  // GTEST_HAS_PARAM_TEST
    
      // Gets the number of successful test cases.
      int successful_test_case_count() const;
    
      // Gets the number of failed test cases.
      int failed_test_case_count() const;
    
      // Gets the number of all test cases.
      int total_test_case_count() const;
    
      // Gets the number of all test cases that contain at least one test
      // that should run.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    	// gcmarkBits will be 8-byte aligned, so we don't have to
    	// worry about edge cases, irrelevant bits will simply be zero.
    	for i := uintptr(0); i < bytes; i += 8 {
    		// Extract 64 bits from the byte pointer and get a OnesCount.
    		// Note that the unsafe cast here doesn't preserve endianness,
    		// but that's OK. We only care about how many bits are 1, not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        // Gets function corresponding branch # `index`.
        // Prefer passing in SymbolTableCollection to reduce lookup costs by
        // enabling reusing cached symbol table lookup.
        func::FuncOp ResolveBranchFunction(::mlir::SymbolTableCollection* table, int index) {
          auto flat_sym_ref = getBranches()[index].cast<FlatSymbolRefAttr>();
          if (table)
            return table->lookupNearestSymbolFrom<func::FuncOp>(*this, flat_sym_ref);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. cmd/object-api-listobjects_test.go

    				}
    			}
    			// Since there are cases for which ListObjects fails, this is
    			// necessary. Test passes as expected, but the output values
    			// are verified for correctness here.
    			if err == nil && testCase.shouldPass {
    				// The length of the expected ListObjectsResult.Objects
    				// should match in both expected result from test cases
    				// and in the output. On failure calling t.Fatalf,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	// physical page, based on maxPhysPageSize.
    	maxPagesPerPhysPage = maxPhysPageSize / pageSize
    
    	// scavengeCostRatio is the approximate ratio between the costs of using previously
    	// scavenged memory and scavenging memory.
    	//
    	// For most systems the cost of scavenging greatly outweighs the costs
    	// associated with using scavenged memory, making this constant 0. On other systems
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/time/time_test.go

    				t0.Format(RFC3339Nano), d, rnd, t1.Format(RFC3339Nano),
    				absString(t0), int64(d), absString(rnd), absString(t1))
    			return false
    		}
    		return true
    	}
    
    	// manual test cases
    	for _, tt := range truncateRoundTests {
    		testOne(tt.t.Unix(), int64(tt.t.Nanosecond()), int64(tt.d))
    	}
    
    	// exhaustive near 0
    	for i := 0; i < 100; i++ {
    		for j := 1; j < 100; j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    		Code:           "CastFailed",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidCast: {
    		Code:           "InvalidCast",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Futures.java

       *     fetchCounterFuture, FetchException.class, x -> 0, directExecutor());
       * }</pre>
       *
       * <p>When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See
       * the warnings the {@link MoreExecutors#directExecutor} documentation.
       *
       * @param input the primary input {@code Future}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// that plugins provide (some are mandatory, some are optional, with or without
    /// a default implementation).
    ///
    /// Each plugin implements the operations that are supported and TensorFlow will
    /// properly handle the cases when an operation is not supported (i.e., return
    /// the corresponding `Status` value).
    ///
    /// REQUIRED OPERATIONS: All required operations are marked as such, including
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      // CHECK-LABEL: add_v2_uint32
      // CHECK:  %[[CAST:.*]] = "tf.Cast"(%arg0) <{Truncate = false}> : (tensor<ui32>) -> tensor<i32>
      // CHECK:  %[[CAST1:.*]] = "tf.Cast"(%arg1) <{Truncate = false}> : (tensor<ui32>) -> tensor<i32>
      // CHECK:  %[[ADD:.*]] = "tf.AddV2"(%[[CAST]], %[[CAST1]]) : (tensor<i32>, tensor<i32>) -> tensor<i32>
      // CHECK:  %[[CAST2:.*]] = "tf.Cast"(%[[ADD]]) <{Truncate = false}> : (tensor<i32>) -> tensor<ui32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
Back to top