Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 461 for race (0.04 sec)

  1. pkg/controller/volume/persistentvolume/delete_test.go

    				newVolume("volume8-11-2", "1Gi", "uid8-11", "claim8-11", v1.VolumeBound, v1.PersistentVolumeReclaimDelete, classEmpty, volume.AnnDynamicallyProvisioned),
    			},
    			// the claim is bound to volume8-11-2 -> volume8-11-1 has lost the race and will be deleted
    			initialClaims:  newClaimArray("claim8-11", "uid8-11", "10Gi", "volume8-11-2", v1.ClaimBound, nil),
    			expectedClaims: newClaimArray("claim8-11", "uid8-11", "10Gi", "volume8-11-2", v1.ClaimBound, nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux.go

    	runtime_entersyscall()
    	// N.B. Calling RawSyscall here is unsafe with atomic coverage
    	// instrumentation and race mode.
    	//
    	// Coverage instrumentation will add a sync/atomic call to RawSyscall.
    	// Race mode will add race instrumentation to sync/atomic. Race
    	// instrumentation requires a P, which we no longer have.
    	//
    	// RawSyscall6 is fine because it is implemented in assembly and thus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/config.go

    	useAvg         bool        // Use optimizations that need Avg* operations
    	useHmul        bool        // Use optimizations that need Hmul* operations
    	SoftFloat      bool        //
    	Race           bool        // race detector enabled
    	BigEndian      bool        //
    	UseFMA         bool        // Use hardware FMA operation
    	unalignedOK    bool        // Unaligned loads/stores are ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. src/math/rand/rand.go

    // ExpFloat64 returns an exponentially distributed float64 in the range
    // (0, +[math.MaxFloat64]] with an exponential distribution whose rate parameter
    // (lambda) is 1 and whose mean is 1/lambda (1) from the default [Source].
    // To produce a distribution with a different rate parameter,
    // callers can adjust the output using:
    //
    //	sample = ExpFloat64() / desiredRateParameter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/README

    [mustlinkext]
    	platform always requires external linking
    [net:*]
    	can connect to external network host <suffix>
    [pielinkext]
    	platform requires external linking for PIE
    [race]
    	GOOS/GOARCH supports -race
    [root]
    	os.Geteuid() == 0
    [short]
    	testing.Short()
    [symlink]
    	testenv.HasSymlink()
    [trimpath]
    	test binary was built with -trimpath
    [verbose]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. pkg/kubelet/pleg/evented.go

    	for event := range containerEventsResponseCh {
    		// Ignore the event if PodSandboxStatus is nil.
    		// This might happen under some race condition where the podSandbox has
    		// been deleted, and therefore container runtime couldn't find the
    		// podSandbox for the container when generating the event.
    		// It is safe to ignore because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. src/runtime/arena.go

    		asanunpoison(unsafe.Pointer(span.base()), span.elemsize)
    	}
    
    	if rate := MemProfileRate; rate > 0 {
    		c := getMCache(mp)
    		if c == nil {
    			throw("newUserArenaChunk called without a P or outside bootstrapping")
    		}
    		// Note cache c only valid while m acquired; see #47302
    		if rate != 1 && userArenaChunkBytes < c.nextSample {
    			c.nextSample -= userArenaChunkBytes
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_4x.md

     *  Fix: Don't lose HTTP/2 flow control bytes when incoming data races with a stream close. If this
        happened enough then eventually the connection would stall.
    
     *  Fix: Acknowledge and apply inbound HTTP/2 settings atomically. Previously we had a race where we
        could use new flow control capacity before acknowledging it, causing strict HTTP/2 servers to
        fail the call.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. src/runtime/profbuf.go

    			// No data to read, but there is overflow to report.
    			// Racing with writer flushing b.overflow into a real record.
    			count, time := b.takeOverflow()
    			if count == 0 {
    				// Lost the race, go around again.
    				goto Read
    			}
    			// Won the race, report overflow.
    			dst := b.overflowBuf
    			dst[0] = uint64(2 + b.hdrsize + 1)
    			dst[1] = time
    			clear(dst[2 : 2+b.hdrsize])
    			dst[2+b.hdrsize] = uint64(count)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. tests/integration/ambient/cacert_rotation_test.go

    				"ca-cert-alt-2.pem", "ca-key-alt-2.pem",
    				"cert-chain-alt-2.pem", "root-cert-alt.pem"); err != nil {
    				t.Errorf("failed to update CA secret: %v", err)
    			}
    
    			// perform one retry to handle race condition where ztunnel cert is refreshed before Istiod certificates are reloaded
    			retry.UntilSuccess(func() error {
    				newWorkloadCert := waitForWorkloadCertUpdate(t, ztunnelPod, sa, istioCtl, originalWorkloadSecret)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top