Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for stealID (0.25 sec)

  1. src/runtime/traceruntime.go

    	// The status of the proc and goroutine, if we need to emit one here, is not evident from the
    	// context of just emitting this event alone. There are two cases. Either we're trying to steal
    	// the P just to get its attention (e.g. STW or sysmon retake) or we're trying to steal a P for
    	// ourselves specifically to keep running. The two contexts look different, but can be summarized
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/math/big/prime.go

    		// or P V(k) - 2 V(k+1) == 0 mod n.
    		t1 := t1.mul(vk, natP)
    		t2 := t2.shl(vk1, 1)
    		if t1.cmp(t2) < 0 {
    			t1, t2 = t2, t1
    		}
    		t1 = t1.sub(t1, t2)
    		t3 := vk1 // steal vk1, no longer needed below
    		vk1 = nil
    		_ = vk1
    		t2, t3 = t2.div(t3, t1, n)
    		if len(t3) == 0 {
    			return true
    		}
    	}
    
    	// Check V(2^t s) ≡ 0 mod n for some 0 ≤ t < r-1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/scalehandler_test.go

    					APIVersion: "apps/v1",
    					FieldsType: "FieldsV1",
    					FieldsV1:   &metav1.FieldsV1{Raw: []byte(`{"f:spec":{"f:selector":{}}}`)},
    				},
    			},
    		},
    		{
    			desc: "Subresource steals all the fields of the parent resource",
    			parent: []metav1.ManagedFieldsEntry{
    				{
    					Manager:    "test",
    					Operation:  metav1.ManagedFieldsOperationApply,
    					APIVersion: "apps/v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  4. docs/metrics/v3.md

    | `minio_system_cpu_load_perc`  | `gauge` | CPU load average 1min (percentage) | `server` |
    | `minio_system_cpu_nice`       | `gauge` | CPU nice time                      | `server` |
    | `minio_system_cpu_steal`      | `gauge` | CPU steal time                     | `server` |
    | `minio_system_cpu_system`     | `gauge` | CPU system time                    | `server` |
    | `minio_system_cpu_user`       | `gauge` | CPU user time                      | `server` |
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  5. src/runtime/export_test.go

    			if gs[j].sig != 1 {
    				print("bad element ", j, "(", gs[j].sig, ") at iter ", i, "\n")
    				throw("bad element")
    			}
    		}
    		if s != i/2 && s != i/2+1 {
    			print("bad steal ", s, ", want ", i/2, " or ", i/2+1, ", iter ", i, "\n")
    			throw("bad steal")
    		}
    	}
    }
    
    func RunSchedLocalQueueEmptyTest(iters int) {
    	// Test that runq is not spuriously reported as empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  6. src/runtime/proc_test.go

    // producer (the main benchmark goroutine).
    //
    // Compared to BenchmarkCreateGoroutines, this causes different behavior in the
    // scheduler because Ms are much more likely to need to steal work from the
    // main P rather than having work in the local run queue.
    func BenchmarkCreateGoroutinesSingle(b *testing.B) {
    	// Since we are interested in stealing behavior, warm the scheduler to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  7. docs/en/docs/async.md

    Then the cashier 💁 says "I'm finished with doing the burgers" by putting your number on the counter's display, but you don't jump like crazy immediately when the displayed number changes to your turn number. You know no one will steal your burgers because you have the number of your turn, and they have theirs.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/net/dial.go

    		return time.Time{}, errTimeout
    	}
    	// Tentatively allocate equal time to each remaining address.
    	timeout := timeRemaining / time.Duration(addrsRemaining)
    	// If the time per address is too short, steal from the end of the list.
    	const saneMinimum = 2 * time.Second
    	if timeout < saneMinimum {
    		if timeRemaining < saneMinimum {
    			timeout = timeRemaining
    		} else {
    			timeout = saneMinimum
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/k8sleaderelection/leaderelection_test.go

    		//	key: "aaa",
    		//	keyComparisonFunc: func(existingKey string) bool {
    		//		return "aaa" > existingKey
    		//	},
    		//
    		//	expectSuccess: false,
    		//	outHolder:     "bing",
    		//},
    		{
    			name: "steal from led object with key when our key is larger",
    			reactors: []Reactor{
    				{
    					verb: "get",
    					reaction: func(action fakeclient.Action) (handled bool, ret runtime.Object, err error) {
    						// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 23 16:39:43 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  10. src/runtime/runtime2.go

    	// may be stolen by another M. This is similar to _Pidle but
    	// uses lightweight transitions and maintains M affinity.
    	//
    	// Leaving _Psyscall must be done with a CAS, either to steal
    	// or retake the P. Note that there's an ABA hazard: even if
    	// an M successfully CASes its original P back to _Prunning
    	// after a syscall, it must understand the P may have been
    	// used by another M in the interim.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top