Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 216 for vSlots (0.77 sec)

  1. android/guava-tests/test/com/google/common/reflect/InvokableTest.java

    import java.util.Collections;
    import junit.framework.TestCase;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit tests for {@link Invokable}.
     *
     * @author Ben Yu
     */
    @AndroidIncompatible // lots of failures, possibly some related to bad equals() implementations?
    public class InvokableTest extends TestCase {
      // Historically Invokable inherited from java.lang.reflect.AccessibleObject. That's no longer the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/reflect/InvokableTest.java

    import java.util.Collections;
    import junit.framework.TestCase;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit tests for {@link Invokable}.
     *
     * @author Ben Yu
     */
    @AndroidIncompatible // lots of failures, possibly some related to bad equals() implementations?
    public class InvokableTest extends TestCase {
      // Historically Invokable inherited from java.lang.reflect.AccessibleObject. That's no longer the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/writebarrier.go

    					// about, but through an aliased but offset pointer.
    					// So we have to throw all the zero information we have away.
    					continue
    				}
    				// Round to cover any partially written pointer slots.
    				// Pointer writes should never be unaligned like this, but non-pointer
    				// writes to pointer-containing types will do this.
    				if d := off % ptrSize; d != 0 {
    					off -= d
    					size += d
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  4. src/internal/bisect/bisect.go

    	d.m[h] = true
    	d.mu.Unlock()
    	return seen
    }
    
    // seenLossy is a variant of seen that avoids a lock by using a cache of recently seen hashes.
    // Each cache entry is N-way set-associative: h can appear in any of the slots.
    // If h does not appear in any of them, then it is inserted into a random slot,
    // overwriting whatever was there before.
    func (d *dedup) seenLossy(h uint64) bool {
    	cache := &d.recent[uint(h)%uint(len(d.recent))]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. src/runtime/cgocall.go

    // cgo writes a gcc-compiled function named GoF (not p.GoF, since gcc doesn't
    // know about packages).  The gcc-compiled C function f calls GoF.
    //
    // GoF initializes "frame", a structure containing all of its
    // arguments and slots for p.GoF's results. It calls
    // crosscall2(_cgoexp_GoF, frame, framesize, ctxt) using the gcc ABI.
    //
    // crosscall2 (in cgo/asm_$GOARCH.s) is a four-argument adapter from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_test.go

    	runEncrypt(t, transformer)
    
    	assertNonce(t, &nonceGen.nonce, 1)
    
    	runEncrypt(t, transformer)
    
    	assertNonce(t, &nonceGen.nonce, 2)
    
    	nonceGen.nonce.Store(math.MaxUint64 - 1) // pretend lots of encryptions occurred
    
    	runEncrypt(t, transformer)
    
    	assertNonce(t, &nonceGen.nonce, math.MaxUint64)
    
    	if count != 0 {
    		t.Errorf("fatal should not have been called yet")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  7. src/net/rpc/server_test.go

    func (t *ReplyNotPublic) ReplyNotPublic(args *Args, reply *local) error {
    	return nil
    }
    
    func (t *NeedsPtrType) NeedsPtrType(args *Args, reply *Reply) error {
    	return nil
    }
    
    // Check that registration handles lots of bad methods and a type with no suitable methods.
    func TestRegistrationError(t *testing.T) {
    	err := Register(new(ReplyNotPointer))
    	if err == nil {
    		t.Error("expected error registering ReplyNotPointer")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 05:23:29 UTC 2023
    - 19K bytes
    - Viewed (0)
  8. src/runtime/gc_test.go

    	// BenchmarkReadMemStats is for).
    	maxProcs := runtime.GOMAXPROCS(-1)
    	if maxProcs == 1 {
    		b.Skip("This benchmark can only be run with GOMAXPROCS > 1")
    	}
    
    	// Code to build a big tree with lots of pointers.
    	type node struct {
    		children [16]*node
    	}
    	var buildTree func(depth int) *node
    	buildTree = func(depth int) *node {
    		tree := new(node)
    		if depth != 0 {
    			for i := range tree.children {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller.go

    	// EndpointsLastChangeTriggerTime annotation.
    	triggerTimeTracker *endpointsliceutil.TriggerTimeTracker
    
    	// Services that need to be updated. A channel is inappropriate here,
    	// because it allows services with lots of pods to be serviced much
    	// more often than services with few pods; it also would cause a
    	// service that's inserted multiple times to be processed more than
    	// necessary.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. pkg/volume/util/subpath/subpath_linux.go

    		// After go 1.16, WalkDir was introduced, it's more effective than Walk because the callback WalkDirFunc is called before
    		// reading a directory, making it save some time when a container's subPath contains lots of dirs.
    		// See https://github.com/kubernetes/kubernetes/pull/71804 and https://github.com/kubernetes/kubernetes/issues/107667 for more details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
Back to top