Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for mid2 (0.44 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	logger, ctx := ktesting.NewTestContext(t)
    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    	q := NewTestQueue(ctx, newDefaultQueueSort())
    
    	midPod := st.MakePod().Name("test-midpod").Namespace("ns1").UID("tp-mid").Priority(midPriority).NominatedNodeName("node1").Obj()
    	highPod := st.MakePod().Name("test-highpod").Namespace("ns1").UID("tp-high").Priority(highPriority).NominatedNodeName("node1").Obj()
    	q.Add(logger, midPod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func EqualSid(sid1 *SID, sid2 *SID) (isEqual bool) {
    	r0, _, _ := syscall.Syscall(procEqualSid.Addr(), 2, uintptr(unsafe.Pointer(sid1)), uintptr(unsafe.Pointer(sid2)), 0)
    	isEqual = r0 != 0
    	return
    }
    
    func FreeSid(sid *SID) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. src/reflect/value.go

    // v.flag.mustBe(Bool), which will only bother to copy the
    // single important word for the receiver.
    func (f flag) mustBe(expected Kind) {
    	// TODO(mvdan): use f.kind() again once mid-stack inlining gets better
    	if Kind(f&flagKindMask) != expected {
    		panic(&ValueError{valueMethodName(), f.kind()})
    	}
    }
    
    // mustBeExported panics if f records that the value was obtained using
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. RELEASE.md

        * Add `compute_sparse_core_stats` for sparse core users to profile the
          data with this API to get the `max_ids` and `max_unique_ids`. These
          numbers will be needed to configure the sparse core embedding mid level
          api.
        * Remove the `preprocess_features` method since that's no longer needed.
    
    ## Thanks to our Contributors
    
    This release contains contributions from many people at Google, as well as:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top