Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 1u (0.01 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    			expectRuntimeCost:   25,
    		},
    		{
    			expr:                `sets.equivalent([1], [1u, 1.0])`,
    			expectEstimatedCost: checker.CostEstimate{Min: 25, Max: 25},
    			expectRuntimeCost:   25,
    		},
    		{
    			expr:                `sets.equivalent([1], [1u, 1.0])`,
    			expectEstimatedCost: checker.CostEstimate{Min: 25, Max: 25},
    			expectRuntimeCost:   25,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/codegen_test_h.golden

    ::xla::cpu_function_runtime::BufferInfo(::xla::cpu_function_runtime::EncodedBufferInfo{5ULL, ~0U, ~0U}),
    ::xla::cpu_function_runtime::BufferInfo(::xla::cpu_function_runtime::EncodedBufferInfo{386ULL, 1U, ~0U}),
    ::xla::cpu_function_runtime::BufferInfo(::xla::cpu_function_runtime::EncodedBufferInfo{5ULL, ~0U, ~0U}),
    ::xla::cpu_function_runtime::BufferInfo(::xla::cpu_function_runtime::EncodedBufferInfo{386ULL, 2U, ~0U}),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			}
    		}
    	}
    }
    
    func TestNewScaledSet(t *testing.T) {
    	table := []struct {
    		value  int64
    		scale  Scale
    		expect string
    	}{
    		{1, Nano, "1n"},
    		{1000, Nano, "1u"},
    		{1, Micro, "1u"},
    		{1000, Micro, "1m"},
    		{1, Milli, "1m"},
    		{1000, Milli, "1"},
    		{1, 0, "1"},
    		{0, Nano, "0"},
    		{0, Micro, "0"},
    		{0, Milli, "0"},
    		{0, 0, "0"},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // code).  Unlike rand_r(), it's portable.  An LCG isn't very random,
    // but it's good enough for our purposes.
    class GTEST_API_ Random {
     public:
      static const UInt32 kMaxRange = 1u << 31;
    
      explicit Random(UInt32 seed) : state_(seed) {}
    
      void Reseed(UInt32 seed) { state_ = seed; }
    
      // Generates a random number from [0, range).  Crashes if 'range' is
      // 0 or greater than kMaxRange.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top