Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for 1000000000 (0.09 sec)

  1. src/runtime/sys_linux_mipsx.s

    	MOVW	$1, R4	// CLOCK_MONOTONIC
    	MOVW	$4(R29), R5
    	MOVW	$SYS_clock_gettime, R2
    	SYSCALL
    	MOVW	4(R29), R3	// sec
    	MOVW	8(R29), R5	// nsec
    	// sec is in R3, nsec in R5
    	// return nsec in R3
    	MOVW	$1000000000, R4
    	MULU	R4, R3
    	MOVW	LO, R3
    	ADDU	R5, R3
    	SGTU	R5, R3, R4
    	MOVW	$ret+0(FP), R6
    #ifdef GOARCH_mips
    	MOVW	R3, 4(R6)
    #else
    	MOVW	R3, 0(R6)
    #endif
    	MOVW	HI, R3
    	ADDU	R4, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  2. src/math/big/gcd_test.go

    func BenchmarkGCD100x100000(b *testing.B)    { runGCD(b, 100, 100000) }
    func BenchmarkGCD1000x1000(b *testing.B)     { runGCD(b, 1000, 1000) }
    func BenchmarkGCD1000x10000(b *testing.B)    { runGCD(b, 1000, 10000) }
    func BenchmarkGCD1000x100000(b *testing.B)   { runGCD(b, 1000, 100000) }
    func BenchmarkGCD10000x10000(b *testing.B)   { runGCD(b, 10000, 10000) }
    func BenchmarkGCD10000x100000(b *testing.B)  { runGCD(b, 10000, 100000) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 19:11:43 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  3. src/net/testdata/igmp

    1	lo        :     1      V3
    				010000E0     1 0:00000000		0
    2	eth0      :     2      V2
    				FB0000E0     1 0:00000000		1
    				010000E0     1 0:00000000		0
    3	eth1      :     1      V3
    				010000E0     1 0:00000000		0
    4	eth2      :     1      V3
    				010000E0     1 0:00000000		0
    5	eth0.100  :     2      V3
    				FB0000E0     1 0:00000000		0
    				010000E0     1 0:00000000		0
    6	eth0.101  :     2      V3
    				FB0000E0     1 0:00000000		0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 775 bytes
    - Viewed (0)
  4. pkg/kubelet/winstats/perfcounter_nodestats_test.go

    		expected      uint64
    	}{
    		{latestValue: uint64(0), previousValue: uint64(0), expected: uint64(0)},
    		{latestValue: uint64(2000000000), previousValue: uint64(0), expected: uint64(200000000 * perfCounterUpdatePeriodSeconds)},
    		{latestValue: uint64(5000000000), previousValue: uint64(2000000000), expected: uint64(300000000 * perfCounterUpdatePeriodSeconds)},
    	}
    
    	for _, tc := range testCases {
    		p := perfCounterNodeStatsClient{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/helpers_linux.go

    limitations under the License.
    */
    
    package kuberuntime
    
    import (
    	"k8s.io/kubernetes/pkg/kubelet/cm"
    	"math"
    )
    
    const (
    	milliCPUToCPU = 1000
    
    	// 100000 microseconds is equivalent to 100ms
    	quotaPeriod = 100000
    	// 1000 microseconds is equivalent to 1ms
    	// defined here:
    	// https://github.com/torvalds/linux/blob/cac03ac368fabff0122853de2422d4e17a32de08/kernel/sched/core.c#L10546
    	minQuotaPeriod = 1000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/net/mac_test.go

    	// See RFC 7042, Section 2.2.2.
    	{"02:00:5e:10:00:00:00:01", HardwareAddr{0x02, 0x00, 0x5e, 0x10, 0x00, 0x00, 0x00, 0x01}, ""},
    	{"02-00-5e-10-00-00-00-01", HardwareAddr{0x02, 0x00, 0x5e, 0x10, 0x00, 0x00, 0x00, 0x01}, ""},
    	{"0200.5e10.0000.0001", HardwareAddr{0x02, 0x00, 0x5e, 0x10, 0x00, 0x00, 0x00, 0x01}, ""},
    
    	// See RFC 4391, Section 9.1.1.
    	{
    		"00:00:00:00:fe:80:00:00:00:00:00:00:02:00:5e:10:00:00:00:01",
    		HardwareAddr{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 02:36:14 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  7. pkg/kubelet/qos/policy_test.go

    func TestGetContainerOOMScoreAdjust(t *testing.T) {
    	oomTests := []oomTest{
    		{
    			pod:             &cpuLimit,
    			memoryCapacity:  4000000000,
    			lowOOMScoreAdj:  999,
    			highOOMScoreAdj: 999,
    		},
    		{
    			pod:             &memoryLimitCPURequest,
    			memoryCapacity:  8000000000,
    			lowOOMScoreAdj:  999,
    			highOOMScoreAdj: 999,
    		},
    		{
    			pod:             &zeroMemoryLimit,
    			memoryCapacity:  7230457451,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 21:34:27 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/AbstractCrawlerClientTest.java

            client.checkMaxContentLength(responseData);
    
            responseData.setContentLength(1000000L);
            client.checkMaxContentLength(responseData);
    
            responseData.setContentLength(1000000000L);
            client.checkMaxContentLength(responseData);
    
            responseData.setContentLength(1000000000000L);
            client.checkMaxContentLength(responseData);
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/StopwatchTest.java

        stopwatch.start();
        ticker.advance(5000000000L);
        assertEquals("5.000 s", stopwatch.toString());
        stopwatch.reset();
        stopwatch.start();
        ticker.advance((long) (1.5 * 60 * 1000000000L));
        assertEquals("1.500 min", stopwatch.toString());
        stopwatch.reset();
        stopwatch.start();
        ticker.advance((long) (2.5 * 60 * 60 * 1000000000L));
        assertEquals("2.500 h", stopwatch.toString());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/scale_int_test.go

    	"testing"
    )
    
    func TestScaledValueInternal(t *testing.T) {
    	tests := []struct {
    		unscaled *big.Int
    		scale    int
    		newScale int
    
    		want int64
    	}{
    		// remain scale
    		{big.NewInt(1000), 0, 0, 1000},
    
    		// scale down
    		{big.NewInt(1000), 0, -3, 1},
    		{big.NewInt(1000), 3, 0, 1},
    		{big.NewInt(0), 3, 0, 0},
    
    		// always round up
    		{big.NewInt(999), 3, 0, 1},
    		{big.NewInt(500), 3, 0, 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 11 03:04:14 UTC 2018
    - 2.1K bytes
    - Viewed (0)
Back to top