Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 320 for race (0.04 sec)

  1. src/go/types/typexpr.go

    	if check.conf._Trace {
    		check.trace(e0.Pos(), "-- type %s", e0)
    		check.indent++
    		defer func() {
    			check.indent--
    			var under Type
    			if T != nil {
    				// Calling under() here may lead to endless instantiations.
    				// Test case: type T[P any] *T[P]
    				under = safeUnderlying(T)
    			}
    			if T == under {
    				check.trace(e0.Pos(), "=> %s // %s", T, goTypeName(T))
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. pkg/kubelet/pleg/generic.go

    		} else {
    			klog.V(4).InfoS("PLEG: Write status", "pod", klog.KRef(pod.Namespace, pod.Name))
    		}
    		// Preserve the pod IP across cache updates if the new IP is empty.
    		// When a pod is torn down, kubelet may race with PLEG and retrieve
    		// a pod status after network teardown, but the kubernetes API expects
    		// the completed pod's IP to be available after the pod is dead.
    		status.IPs = g.getPodIPs(pid, status)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/runtime/stack.go

    			}
    			osStackAlloc(s)
    			s.elemsize = uintptr(n)
    		}
    		v = unsafe.Pointer(s.base())
    	}
    
    	if traceAllocFreeEnabled() {
    		trace := traceTryAcquire()
    		if trace.ok() {
    			trace.GoroutineStackAlloc(uintptr(v), uintptr(n))
    			traceRelease(trace)
    		}
    	}
    	if raceenabled {
    		racemalloc(v, uintptr(n))
    	}
    	if msanenabled {
    		msanmalloc(v, uintptr(n))
    	}
    	if asanenabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cfg/cfg.go

    	CmdName string // "build", "install", "list", "mod tidy", etc.
    
    	DebugActiongraph  string // -debug-actiongraph flag (undocumented, unstable)
    	DebugTrace        string // -debug-trace flag
    	DebugRuntimeTrace string // -debug-runtime-trace flag (undocumented, unstable)
    
    	// GoPathError is set when GOPATH is not set. it contains an
    	// explanation why GOPATH is unset.
    	GoPathError   string
    	GOPATHChanged bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

                    // Writing with explicit trace helps to avoid attributing these failures to "Gradle runtime".
                    // TODO(mlopatkin): can we do even better and pinpoint the exact stacktrace in case of failure?
                    val trace = locationFor(null)
                    sink().write(ValueSource(obtainedValue.uncheckedCast()), trace)
                    reportUniqueValueSourceInput(
                        trace,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  6. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    	Force                   bool
    	MaxConcurrentReconciles int
    }
    
    // watchedResources contains all resources we will watch and reconcile when changed
    // Ideally this would also contain Istio CRDs, but there is a race condition here - we cannot watch
    // a type that does not yet exist.
    func watchedResources() []schema.GroupVersionKind {
    	res := []schema.GroupVersionKind{
    		{Group: "apps", Version: "v1", Kind: name.DeploymentStr},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/runtime/syscall_windows.go

    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    // cbs stores all registered Go callbacks.
    var cbs struct {
    	lock  mutex // use cbsLock / cbsUnlock for race instrumentation.
    	ctxt  [cb_max]winCallback
    	index map[winCallbackKey]int
    	n     int
    }
    
    func cbsLock() {
    	lock(&cbs.lock)
    	// compileCallback is used by goenvs prior to completion of schedinit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. cmd/bucket-metadata-sys.go

    		globalBucketMonitor.DeleteBucket(bucket)
    	}
    }
    
    // Set - sets a new metadata in-memory.
    // Only a shallow copy is saved and fields with references
    // cannot be modified without causing a race condition,
    // so they should be replaced atomically and not appended to, etc.
    // Data is not persisted to disk.
    func (sys *BucketMetadataSys) Set(bucket string, meta BucketMetadata) {
    	if !isMinioMetaBucketName(bucket) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/test.go

    	int i;
    	for (i = 0; i < l; i++) {
    		if (b[i] != i) {
    			return 0;
    		}
    	}
    	return 1;
    }
    
    // issue 17065
    // Test that C symbols larger than a page play nicely with the race detector.
    int ii[65537];
    
    // issue 17537
    // The void* cast introduced by cgo to avoid problems
    // with const/volatile qualifiers breaks C preprocessor macros that
    // emulate functions.
    
    typedef struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typexpr.go

    	if check.conf.Trace {
    		check.trace(e0.Pos(), "-- type %s", e0)
    		check.indent++
    		defer func() {
    			check.indent--
    			var under Type
    			if T != nil {
    				// Calling under() here may lead to endless instantiations.
    				// Test case: type T[P any] *T[P]
    				under = safeUnderlying(T)
    			}
    			if T == under {
    				check.trace(e0.Pos(), "=> %s // %s", T, goTypeName(T))
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top