Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of about 10,000 for lost (0.1 sec)

  1. src/internal/trace/order.go

    		if status == go122.ProcSyscallAbandoned && s.status == go122.ProcSyscall {
    			// ProcSyscallAbandoned is a special case of ProcSyscall. It indicates a
    			// potential loss of information, but if we're already in ProcSyscall,
    			// we haven't lost the relevant information. Promote the status and advance.
    			oldState = ProcRunning
    			ev.args[1] = uint64(go122.ProcSyscall)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

      // Specifics to this plan.
      override val route: Route,
      internal val routes: List<Route>?,
      private val attempt: Int,
      private val tunnelRequest: Request?,
      internal val connectionSpecIndex: Int,
      internal val isTlsFallback: Boolean,
    ) : RoutePlanner.Plan, ExchangeCodec.Carrier {
      /** True if this connect was canceled; typically because it lost a race. */
      @Volatile private var canceled = false
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/controllermanager.go

    				}
    				controllerDescriptors[names.ServiceAccountTokenController] = saTokenControllerDescriptor
    				run(ctx, controllerDescriptors)
    			},
    			OnStoppedLeading: func() {
    				logger.Error(nil, "leaderelection lost")
    				klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    			},
    		})
    
    	// If Leader Migration is enabled, proceed to attempt the migration lock.
    	if leaderMigrator != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. src/runtime/callers_test.go

    		defer f()
    	}
    	// Use the value of 'state' to make sure nil defer func f causes panic at
    	// function exit, rather than at the defer statement.
    	state = 2
    }
    
    // issue #51988
    // Func.Endlineno was lost when instantiating generic functions, leading to incorrect
    // stack trace positions.
    func TestCallersEndlineno(t *testing.T) {
    	testNormalEndlineno(t)
    	testGenericEndlineno[int](t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 21:36:31 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

      bool ContainsQuantizeOps(func::FuncOp func);
    
      QuantizationSpecs quant_specs_;
    
      Option<bool> enable_post_training_quantize_{
          *this, "post-training-quantize", llvm::cl::init(false),
          llvm::cl::desc("Enable post training quantization. Only used in tests.")};
    
      // A local flag is needed for testing conditions in
      // prepare_quantize_ptq_per_channel.mlir.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Suppliers.java

          long nanos = expirationNanos;
          long now = System.nanoTime();
          if (nanos == 0 || now - nanos >= 0) {
            synchronized (this) {
              if (nanos == expirationNanos) { // recheck for lost race
                T t = delegate.get();
                value = t;
                nanos = now + durationNanos;
                // In the very unlikely event that nanos is 0, set it to 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/instantiate.go

    		sig.tparams = nil
    		res = sig
    
    	default:
    		// only types and functions can be generic
    		panic(fmt.Sprintf("%v: cannot instantiate %v", pos, orig))
    	}
    
    	// Update all contexts; it's possible that we've lost a race.
    	return updateContexts(res)
    }
    
    // validateTArgLen checks that the number of type arguments (got) matches the
    // number of type parameters (want); if they don't match an error is reported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller_test.go

    			test: func(ctrl *PersistentVolumeController, reactor *pvtesting.VolumeReactor, test controllerTest) error {
    				obj := ctrl.claims.List()[0]
    				claim := obj.(*v1.PersistentVolumeClaim)
    				reactor.DeleteClaimEvent(claim)
    				return nil
    			},
    		},
    		{
    			// deleteVolume with a bound volume. Check the claim is Lost.
    			name:            "5-4 - delete volume",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. pkg/quota/v1/evaluator/core/pods.go

    		resources.Insert(resource)
    	}
    	var errorMessages = make([]string, 0, len(missingSetResourceToContainerNames))
    	for _, resource := range resources.List() {
    		errorMessages = append(errorMessages, fmt.Sprintf("%s for: %s", resource, strings.Join(missingSetResourceToContainerNames[resource].List(), ",")))
    	}
    	return fmt.Errorf("must specify %s", strings.Join(errorMessages, "; "))
    }
    
    // GroupResource that this evaluator tracks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Suppliers.java

          long nanos = expirationNanos;
          long now = System.nanoTime();
          if (nanos == 0 || now - nanos >= 0) {
            synchronized (this) {
              if (nanos == expirationNanos) { // recheck for lost race
                T t = delegate.get();
                value = t;
                nanos = now + durationNanos;
                // In the very unlikely event that nanos is 0, set it to 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top