Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		},
    		{
    			name: "context has a deadline, wait limit should not exceed the hard limit of 1m",
    			parent: func(now time.Time) (context.Context, context.CancelFunc) {
    				// let 1/4th of the remaining deadline exceed the hard limit
    				return context.WithDeadline(context.Background(), now.Add(8*time.Minute))
    			},
    			newReqWaitCtxExpected: true,
    			reqWaitLimitExpected:  time.Minute,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    All workers, including compilers and test executors, now start with 512MB of heap. The previous default was 1/4th of physical memory.
    Large projects may have to increase this setting on the relevant tasks, e.g. <<config_gradle.adoc#sec:configuring_jvm_memory,`JavaCompile`>> or link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html[`Test`].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. src/time/time.go

    // cycle boundaries so that the exceptional years are always delayed as
    // long as possible. That means choosing a year equal to 1 mod 400, so
    // that the first leap year is the 4th year, the first missed leap year
    // is the 100th year, and the missed missed leap year is the 400th year.
    // So we'd prefer instead to print a calendar for 2001-2400 and reuse it
    // for 2401-2800.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set_test.go

    			count:             10,
    			callLimit:         10,
    			fn:                fn,
    			expectedSuccesses: 10,
    			expectedErr:       nil,
    			expectedCallCnt:   10, // 1(first batch) + 2(2nd batch) + 4(3rd batch) + 3(4th batch) = 10
    		},
    		{
    			name:              "callLimit < count (some succeed)",
    			count:             10,
    			callLimit:         5,
    			fn:                fn,
    			expectedSuccesses: 5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top