Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for resumption (0.42 sec)

  1. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     * traditional exclusive locks. Although this increases the false positives that the locks detect
     * (i.e. cycles that will not actually result in deadlock), it simplifies the algorithm and
     * implementation considerably. The assumption is that a user of this factory wishes to eliminate
     * any cyclic acquisition ordering.
     *
     * <p><strong>Explicit Lock Acquisition Ordering</strong>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/testing/testserver.go

    // binaries with the -trimpath option so the simple approach fails however we
    // can consult environment variables to derive the path.
    //
    // The approach taken here works for both go test and bazel on the assumption
    // that if and only if trimpath is passed, we are running under bazel.
    func pkgPath(t Logger) (string, error) {
    	_, thisFile, _, ok := runtime.Caller(0)
    	if !ok {
    		return "", fmt.Errorf("failed to get current file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     * traditional exclusive locks. Although this increases the false positives that the locks detect
     * (i.e. cycles that will not actually result in deadlock), it simplifies the algorithm and
     * implementation considerably. The assumption is that a user of this factory wishes to eliminate
     * any cyclic acquisition ordering.
     *
     * <p><strong>Explicit Lock Acquisition Ordering</strong>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  4. src/runtime/chan.go

    // another running goroutine. The GC assumes that stack writes only
    // happen when the goroutine is running and are only done by that
    // goroutine. Using a write barrier is sufficient to make up for
    // violating that assumption, but the write barrier has to work.
    // typedmemmove will call bulkBarrierPreWrite, but the target bytes
    // are not in the heap, so that will not help. We arrange to call
    // memmove and typeBitsBulkBarrier instead.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. cmd/endpoint.go

    	// DNS. Following code ensures that we treat if one of the endpoint
    	// says its local for a given host - it is true for all endpoints
    	// for the same host. Following code ensures that this assumption
    	// is true and it works in all scenarios and it is safe to assume
    	// for a given host.
    	endpointLocalMap := make(map[string]bool)
    	for _, ep := range endpoints {
    		if ep.IsLocal {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/run.go

    				// Note: If a user somehow configured etc/resolv.conf to point to dnsmasq and server X, and dnsmasq also
    				// pointed to server X, this would not work. However, the assumption is that is not a common case.
    				cfg.ruleBuilder.AppendRuleV4(iptableslog.UndefinedCommand,
    					constants.ISTIOOUTPUT, constants.NAT,
    					"-p", constants.TCP,
    					"--dport", "53",
    					"-d", s+"/32",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. pkg/controller/tainteviction/taint_eviction.go

    			// between node worker setting tc.taintedNodes and pod worker reading this to decide
    			// whether to delete pod.
    			// It's possible that even without this assumption this code is still correct.
    			hash := hash(podUpdate.nodeName, UpdateWorkerSize)
    			select {
    			case <-stopCh:
    				tc.podUpdateQueue.Done(podUpdate)
    				return
    			case tc.podUpdateChannels[hash] <- podUpdate:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. pilot/pkg/simulation/traffic.go

    	if c.Sni == "" && (c.TLS == TLS) {
    		c.Sni = c.HostHeader
    	}
    	if c.Path == "" {
    		c.Path = "/"
    	}
    	if c.TLS == "" {
    		c.TLS = Plaintext
    	}
    	if c.Address == "" {
    		// pick a random address, assumption is the test does not care
    		c.Address = "1.3.3.7"
    	}
    	if c.TLS == MTLS && c.Alpn == "" {
    		c.Alpn = protocolToMTLSAlpn(c.Protocol)
    	}
    	if c.TLS == TLS && c.Alpn == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       proxy will be passed to the method. It's possible that the method body expects an
       *       instance method of the passed-in proxy to be of a certain value yet the proxy isn't aware
       *       of the assumption, in which case the equality check before and after serialization will
       *       fail.
       *   <li>If the constructor or factory method takes a parameter that {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. src/internal/reflectlite/value.go

    // it is invalid (but impossible to check here) to pass i >= len,
    // because then the result will point outside the array.
    // whySafe must explain why i < len. (Passing "i < len" is fine;
    // the benefit is to surface this assumption at the call site.)
    func arrayAt(p unsafe.Pointer, i int, eltSize uintptr, whySafe string) unsafe.Pointer {
    	return add(p, uintptr(i)*eltSize, "i < len")
    }
    
    func ifaceE2I(t *abi.Type, src any, dst unsafe.Pointer)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top