Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 161 for race (0.04 sec)

  1. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		return cur, false, false
    	}
    	if curNum == ControllerVersion {
    		// We already manage this at this version
    		// We will manage it, but no need to attempt to apply the version annotation, which could race with newer versions
    		return cur, false, true
    	}
    	// We are either newer or the same version of the last owner - we can take over. We need to actually
    	// re-apply the annotation
    	return cur, true, true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

          monitor.enter();
          try {
            if (!transitioned) {
              // nothing has transitioned since construction, good.
              ready = true;
            } else {
              // This should be an extremely rare race condition.
              List<Service> servicesInBadStates = Lists.newArrayList();
              for (Service service : servicesByState().values()) {
                if (service.state() != NEW) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/named.go

    func (n *Named) expandUnderlying() Type {
    	check := n.check
    	if check != nil && check.conf.Trace {
    		check.trace(n.obj.pos, "-- Named.expandUnderlying %s", n)
    		check.indent++
    		defer func() {
    			check.indent--
    			check.trace(n.obj.pos, "=> %s (tparams = %s, under = %s)", n, n.tparams.list(), n.underlying)
    		}()
    	}
    
    	assert(n.inst.orig.underlying != nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_launch_util.cc

          // separate stream from the main compute stream. We must ensure the
          // compute stream is synchronized with the host->device transfer
          // stream now otherwise we will create a race condition.
          auto* gpu_device_context =
              static_cast<GPUDeviceContext*>(ctx->op_device_context());
          TF_RETURN_IF_ERROR(gpu_device_context->stream()->WaitFor(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	fmt.Printf("[upgrade/staticpods] This can take up to %v\n", kubeadmapi.GetActiveTimeouts().UpgradeManifests.Duration)
    
    	// Wait for the mirror Pod hash to change; otherwise we'll run into race conditions here when the kubelet hasn't had time to
    	// notice the removal of the Static Pod, leading to a false positive below where we check that the API endpoint is healthy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ServiceManager.java

          monitor.enter();
          try {
            if (!transitioned) {
              // nothing has transitioned since construction, good.
              ready = true;
            } else {
              // This should be an extremely rare race condition.
              List<Service> servicesInBadStates = Lists.newArrayList();
              for (Service service : servicesByState().values()) {
                if (service.state() != NEW) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. src/encoding/gob/type.go

    	if ui, ok := userTypeCache.Load(rt); ok {
    		return ui.(*userTypeInfo), nil
    	}
    
    	// Construct a new userTypeInfo and atomically add it to the userTypeCache.
    	// If we lose the race, we'll waste a little CPU and create a little garbage
    	// but return the existing value anyway.
    
    	ut := new(userTypeInfo)
    	ut.base = rt
    	ut.user = rt
    	// A type that is just a cycle of pointers (such as type T *T) cannot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/resolver.go

    						// do not import them!
    						if isExported(name) {
    							// declare dot-imported object
    							// (Do not use check.declare because it modifies the object
    							// via Object.setScopePos, which leads to a race condition;
    							// the object may be imported into more than one file scope
    							// concurrently. See go.dev/issue/32154.)
    							if alt := fileScope.Lookup(name); alt != nil {
    								err := check.newError(DuplicateDecl)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/go/types/named.go

    func (n *Named) expandUnderlying() Type {
    	check := n.check
    	if check != nil && check.conf._Trace {
    		check.trace(n.obj.pos, "-- Named.expandUnderlying %s", n)
    		check.indent++
    		defer func() {
    			check.indent--
    			check.trace(n.obj.pos, "=> %s (tparams = %s, under = %s)", n, n.tparams.list(), n.underlying)
    		}()
    	}
    
    	assert(n.inst.orig.underlying != nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/go/types/resolver.go

    						// do not import them!
    						if token.IsExported(name) {
    							// declare dot-imported object
    							// (Do not use check.declare because it modifies the object
    							// via Object.setScopePos, which leads to a race condition;
    							// the object may be imported into more than one file scope
    							// concurrently. See go.dev/issue/32154.)
    							if alt := fileScope.Lookup(name); alt != nil {
    								err := check.newError(DuplicateDecl)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top