Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 461 for 150000 (0.14 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandlerTest.groovy

            int port = handler.reservePort()
            handler.start(10, { action1.set(true) })
            handler.start(11, { action2.set(true) })
    
            client.maybePingOwner(port, 10, "lock 1", 50000, null)
            client.maybePingOwner(port, 11, "lock 2", 50000, null)
    
            then:
            poll {
                assert action1.get() && action2.get()
            }
        }
    
        def "client receives signal when lock is released"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

        assertThat(log).containsExactly("run@100000")
    
        taskFaker.advanceUntil(150.µs)
        assertThat(log).containsExactly("run@100000", "run@150000")
    
        taskFaker.advanceUntil(299.µs)
        assertThat(log).containsExactly("run@100000", "run@150000")
    
        taskFaker.advanceUntil(300.µs)
        assertThat(log).containsExactly("run@100000", "run@150000", "run@300000")
    
        taskFaker.assertNoMoreTasks()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. misc/chrome/gophertool/gopher.js

    var pkgRE = /^[a-z0-9_\/]+$/;
    
    function urlForInput(t) {
        if (!t) {
            return null;
        }
    
        if (numericRE.test(t)) {
            if (t < 150000) {
                // We could use the golang.org/cl/ handler here, but
                // avoid some redirect latency and go right there, since
                // one is easy. (no server-side mapping)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 1.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			name:     "50m",
    			quota:    int64(5000),
    			period:   int64(100000),
    			expected: int64(50),
    		},
    		{
    			name:     "750m",
    			quota:    int64(75000),
    			period:   int64(100000),
    			expected: int64(750),
    		},
    		{
    			name:     "1000m",
    			quota:    int64(100000),
    			period:   int64(100000),
    			expected: int64(1000),
    		},
    		{
    			name:     "1500m",
    			quota:    int64(150000),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/helpers_linux_test.go

    			period: uint64(100000),
    		},
    		{
    			input:  int64(1000),
    			quota:  int64(100000),
    			period: uint64(100000),
    		},
    		{
    			input:  int64(1500),
    			quota:  int64(150000),
    			period: uint64(100000),
    		},
    	}
    	for _, testCase := range testCases {
    		quota := MilliCPUToQuota(testCase.input, int64(testCase.period))
    		if quota != testCase.quota {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/helpers_test.go

    		low:    newPodInodeStats(low, resource.MustParse("50000"), resource.MustParse("100000"), resource.MustParse("50000")),     // 200000
    		medium: newPodInodeStats(medium, resource.MustParse("100000"), resource.MustParse("150000"), resource.MustParse("50000")), // 300000
    		high:   newPodInodeStats(high, resource.MustParse("200000"), resource.MustParse("150000"), resource.MustParse("50000")),   // 400000
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  7. test/codegen/memcombine.go

    	b[4], b[5], b[6], b[7] = 0, 0, 0, 0
    	b[8], b[9], b[10], b[11] = 0, 0, 0, 0
    	b[12], b[13], b[14], b[15] = 0, 0, 0, 0
    }
    
    func zero_byte_30(a *[30]byte) {
    	*a = [30]byte{} // arm64:"STP",-"MOVB",-"MOVH",-"MOVW"
    }
    
    func zero_byte_39(a *[39]byte) {
    	*a = [39]byte{} // arm64:"MOVD",-"MOVB",-"MOVH",-"MOVW"
    }
    
    func zero_byte_2_idx(b []byte, idx int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/lifecycle_test.go

    		expected time.Time
    	}{
    		{
    			time.Date(2020, time.March, 15, 10, 10, 10, 0, time.UTC),
    			4,
    			time.Date(2020, time.March, 20, 0, 0, 0, 0, time.UTC),
    		},
    		{
    			time.Date(2020, time.March, 15, 0, 0, 0, 0, time.UTC),
    			1,
    			time.Date(2020, time.March, 17, 0, 0, 0, 0, time.UTC),
    		},
    	}
    
    	for i, tc := range testCases {
    		t.Run(fmt.Sprintf("Test %d", i+1), func(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    				LastTimestamp:  metav1.NewTime(time.Date(1987, time.June, 17, 0, 0, 0, 0, time.UTC)),
    				Count:          1,
    				Type:           api.EventTypeNormal,
    			},
    			{
    				Source:         api.EventSource{Component: "kubelet"},
    				Message:        "Item 3",
    				FirstTimestamp: metav1.NewTime(time.Date(2002, time.December, 25, 0, 0, 0, 0, time.UTC)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. test/fixedbugs/issue13559.go

    	_ int64 = 1e-1000    // ERROR "1e\-1000 truncated|.* truncated to int64|truncated"
    	_ int64 = 1e-10000   // ERROR "1e\-10000 truncated|.* truncated to int64|truncated"
    	_ int64 = 1e-100000  // ERROR "1e\-100000 truncated|.* truncated to int64|truncated"
    	_ int64 = 1e-1000000 // ERROR "1e\-1000000 truncated|.* truncated to int64|truncated"
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 5.9K bytes
    - Viewed (0)
Back to top