Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 236 for 1000Mi (0.08 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/cpu_hardware.cc

    constexpr float kCPUArithmeticUnitCost = 1.0;
    
    // This basically assumes pure load/store. This is just fake data.
    constexpr float kCPUCopyUnitCost = 0.5;
    
    // Default values.
    constexpr float kCPUDefaultFixedValuedCost = 10000.0;
    
    // Quantized inference cost efficiency.
    // For CPU, quantized inference is ~3x faster than the float alternative, this
    // is just an estimation.
    constexpr float kQuantizedInferenceEfficiency = 0.3;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. src/cmp/cmp_test.go

    	{math.Inf(1), 1.0, +1},
    	{1.0, math.Inf(1), -1},
    	{math.NaN(), math.NaN(), 0},
    	{0.0, math.NaN(), +1},
    	{math.NaN(), 0.0, -1},
    	{math.NaN(), math.Inf(-1), -1},
    	{math.Inf(-1), math.NaN(), +1},
    	{0.0, 0.0, 0},
    	{negzero, negzero, 0},
    	{negzero, 0.0, 0},
    	{0.0, negzero, 0},
    	{negzero, 1.0, -1},
    	{negzero, -1.0, +1},
    	{nilptr, nonnilptr, -1},
    	{nonnilptr, nilptr, 1},
    	{nonnilptr, nonnilptr, 0},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

                Thread.sleep(10000L)
            }
        }
    
        public static class SlowDaemonApp {
            public static void main(String[] args) throws InterruptedException {
                System.out.println("I'm the daemon")
                System.out.close()
                System.err.close()
                int napTime = (args.length == 0) ? 10000L : Integer.parseInt(args[0])
                Thread.sleep(napTime)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpClientConfigurerTest.groovy

            1 * httpSettings.sslContextFactory >> sslContextFactory
            1 * timeoutSettings.connectionTimeoutMs >> 10000
            2 * timeoutSettings.socketTimeoutMs >> 30000
            httpClientBuilder.defaultRequestConfig.connectTimeout == 10000
            httpClientBuilder.defaultRequestConfig.socketTimeout == 30000
            httpClientBuilder.defaultSocketConfig.soKeepAlive
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/net/PercentEscaperTest.java

        assertEscaping(e, "%7F", '\u007f'); // del
        assertEscaping(e, "%C2%80", '\u0080'); // xx-00010,x-000000
        assertEscaping(e, "%DF%BF", '\u07ff'); // xx-11111,x-111111
        assertEscaping(e, "%E0%A0%80", '\u0800'); // xxx-0000,x-100000,x-00,0000
        assertEscaping(e, "%EF%BF%BF", '\uffff'); // xxx-1111,x-111111,x-11,1111
        assertUnicodeEscaping(e, "%F0%90%80%80", '\uD800', '\uDC00');
        assertUnicodeEscaping(e, "%F4%8F%BF%BF", '\uDBFF', '\uDFFF');
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  6. pilot/pkg/features/tuning.go

    	).Get()
    
    	MutexProfileFraction = env.Register("MUTEX_PROFILE_FRACTION", 1000,
    		"If set to a non-zero value, enables mutex profiling a rate of 1/MUTEX_PROFILE_FRACTION events."+
    			" For example, '1000' will record 0.1% of events. "+
    			"Set to 0 to disable entirely.").Get()
    
    	StatusUpdateInterval = env.Register(
    		"PILOT_STATUS_UPDATE_INTERVAL",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (1)
  7. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Literal, ".0E-0123", 0, 0},
    	{_Literal, ".0E+12345678901234567890", 0, 0},
    	{_Literal, ".45e1", 0, 0},
    	{_Literal, "3.14159265", 0, 0},
    	{_Literal, "1e0", 0, 0},
    	{_Literal, "1e+100", 0, 0},
    	{_Literal, "1e-100", 0, 0},
    	{_Literal, "2.71828e-1000", 0, 0},
    	{_Literal, "0i", 0, 0},
    	{_Literal, "1i", 0, 0},
    	{_Literal, "012345678901234567889i", 0, 0},
    	{_Literal, "123456789012345678890i", 0, 0},
    	{_Literal, "0.i", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/gpu_hardware.cc

    constexpr float kGPUArithmeticUnitCost = 0.2;
    
    // The copy can be non-consectutive copy. This is just fake data.
    constexpr float kGPUCopyUnitCost = 0.2;
    
    // Default values.
    constexpr float kGPUDefaultFixedValuedCost = 10000.0;
    
    std::unique_ptr<TargetHardware> CreateGpuHardware() {
      return std::make_unique<GpuHardware>();
    }
    
    TargetHardwareRegistration<GpuHardware> gpu_hardware("Target device for GPU",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/net/PercentEscaperTest.java

        assertEscaping(e, "%7F", '\u007f'); // del
        assertEscaping(e, "%C2%80", '\u0080'); // xx-00010,x-000000
        assertEscaping(e, "%DF%BF", '\u07ff'); // xx-11111,x-111111
        assertEscaping(e, "%E0%A0%80", '\u0800'); // xxx-0000,x-100000,x-00,0000
        assertEscaping(e, "%EF%BF%BF", '\uffff'); // xxx-1111,x-111111,x-11,1111
        assertUnicodeEscaping(e, "%F0%90%80%80", '\uD800', '\uDC00');
        assertUnicodeEscaping(e, "%F4%8F%BF%BF", '\uDBFF', '\uDFFF');
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp

                                                   value="${f:h(sortOrder)}" class="form-control"
                                                   min="0" max="100000">
                                        </div>
                                    </div>
                                </div>
                                <div class="card-footer">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top