Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for 4th (0.02 sec)

  1. src/runtime/mgcpacer_test.go

    			scannableFrac: constant(0.01),
    			stackBytes:    constant(8192),
    			length:        50,
    			checker: func(t *testing.T, c []gcCycleResult) {
    				n := len(c)
    				if n > 4 {
    					// After the 4th GC, the heap will stop growing.
    					// First, let's make sure we're finishing near the goal, with some extra
    					// room because we're probably going to be triggering early.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. src/runtime/race_ppc64le.s

    // the arguments from storage to the registers expected
    // by the ABI.
    
    // When calling from Go to Clang tsan code:
    // R3 is the 1st argument and is usually the ThreadState*
    // R4-? are the 2nd, 3rd, 4th, etc. arguments
    
    // When calling racecalladdr:
    // R8 is the call target address
    
    // The race ctx is passed in R3 and loaded in
    // racecalladdr.
    //
    // The sequence used to get the race ctx:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. src/image/gif/reader.go

    var interlacing = []interlaceScan{
    	{8, 0}, // Group 1 : Every 8th. row, starting with row 0.
    	{8, 4}, // Group 2 : Every 8th. row, starting with row 4.
    	{4, 2}, // Group 3 : Every 4th. row, starting with row 2.
    	{2, 1}, // Group 4 : Every 2nd. row, starting with row 1.
    }
    
    // uninterlace rearranges the pixels in m to account for interlaced input.
    func uninterlace(m *image.Paletted) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. src/log/slog/handler.go

    	const prefixLen = len("2006-01-02T15:04:05.000")
    	n := len(b)
    	t = t.Truncate(time.Millisecond).Add(time.Millisecond / 10)
    	b = t.AppendFormat(b, time.RFC3339Nano)
    	b = append(b[:n+prefixLen], b[n+prefixLen+1:]...) // drop the 4th digit
    	return b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. pkg/wasm/cache_test.go

    	testWasmGet(url1, defaultPullPolicy, "2", wantFilePath1, 1)
    	// 3rd time: Should not pull the binary because the policy is IfNotPresent
    	testWasmGet(url1, IfNotPresent, "3", wantFilePath1, 1)
    	// 4th time: Should not pull the binary because the resource version is not changed
    	testWasmGet(url1, Always, "3", wantFilePath1, 1)
    	// 5th time: Should pull the binary because the resource version is changed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    // binary format. The first words are a header with the following data:
    //
    //	1st word -- 0
    //	2nd word -- 3
    //	3rd word -- 0 if a c++ application, 1 if a java application.
    //	4th word -- Sampling period (in microseconds).
    //	5th word -- Padding.
    func parseCPU(b []byte) (*Profile, error) {
    	var parse func([]byte) (uint64, []byte)
    	var n1, n2, n3, n4, n5 uint64
    	for _, parse = range cpuInts {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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