Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 481 for race (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

                  || countMap.replace(element, existingCounter, newCounter)) {
                return 0;
              }
              break;
            }
          }
    
          // If we're still here, there was a race, so just try again.
        }
      }
    
      /**
       * Removes a number of occurrences of the specified element from this multiset. If the multiset
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. src/runtime/mbarrier.go

    		// to pass typ along as an optimization. See the comment on
    		// bulkBarrierPreWrite.
    		bulkBarrierPreWrite(uintptr(dst), uintptr(src), typ.PtrBytes, typ)
    	}
    	// There's a race here: if some other goroutine can write to
    	// src, it may change some pointer in src after we've
    	// performed the write barrier but before we perform the
    	// memory copy. This safe because the write performed by that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. 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)
  9. pilot/pkg/xds/adstest.go

    	ID   string
    	Type string
    
    	cancelOnce    sync.Once
    	context       context.Context
    	cancelContext context.CancelFunc
    	timeout       time.Duration
    }
    
    func (a *AdsTest) Cleanup() {
    	// Place in once to avoid race when two callers attempt to cleanup
    	a.cancelOnce.Do(func() {
    		a.cancelContext()
    		_ = a.client.CloseSend()
    		if a.conn != nil {
    			_ = a.conn.Close()
    		}
    	})
    }
    
    func (a *AdsTest) adsReceiveChannel() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/hash/maphash/smhasher_test.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !race
    
    package maphash
    
    import (
    	"fmt"
    	"internal/testenv"
    	"math"
    	"math/rand"
    	"runtime"
    	"slices"
    	"strings"
    	"testing"
    	"unsafe"
    )
    
    // Smhasher is a torture test for hash functions.
    // https://code.google.com/p/smhasher/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top