Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for unwinding (0.14 sec)

  1. src/runtime/pinner.go

    					// counter is 0, clear multipin bit
    					pinState.setMultiPinned(false)
    				}
    			} else {
    				// no multipins recorded. unpin object.
    				pinState.setPinned(false)
    			}
    		} else {
    			// unpinning unpinned object, bail out
    			throw("runtime.Pinner: object already unpinned")
    		}
    	}
    	unlock(&span.speciallock)
    	releasem(mp)
    	return true
    }
    
    type pinState struct {
    	bytep   *uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
          Waiter succ;
          while (curr != null) {
            succ = curr.next;
            if (curr.thread != null) { // we aren't unlinking this node, update pred.
              pred = curr;
            } else if (pred != null) { // We are unlinking this node and it has a predecessor.
              pred.next = succ;
              if (pred.thread == null) { // We raced with another node that unlinked pred. Restart.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
          Waiter succ;
          while (curr != null) {
            succ = curr.next;
            if (curr.thread != null) { // we aren't unlinking this node, update pred.
              pred = curr;
            } else if (pred != null) { // We are unlinking this node and it has a predecessor.
              pred.next = succ;
              if (pred.thread == null) { // We raced with another node that unlinked pred. Restart.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. src/runtime/select.go

    	// record the successful case, if any.
    	// We singly-linked up the SudoGs in lock order.
    	casi = -1
    	cas = nil
    	caseSuccess = false
    	sglist = gp.waiting
    	// Clear all elem before unlinking from gp.waiting.
    	for sg1 := gp.waiting; sg1 != nil; sg1 = sg1.waitlink {
    		sg1.isSelect = false
    		sg1.elem = nil
    		sg1.c = nil
    	}
    	gp.waiting = nil
    
    	for _, casei := range lockorder {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. pkg/adsc/delta.go

    //     - Tree Update: Modifies its 'tree' to reflect changes in resources, such as adding new resources,
    //     updating relationships between parents and children, and removing or unlinking resources.
    //
    //  3. State Synchronization: Post-processing the delta response, the client updates its internal state. This involves:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                  .on('mousedown.daterangepicker',...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    func (r *readTrackingBody) Close() error {
    	r.didClose = true
    	return r.ReadCloser.Close()
    }
    
    // setupRewindBody returns a new request with a custom body wrapper
    // that can report whether the body needs rewinding.
    // This lets rewindBody avoid an error result when the request
    // does not have GetBody but the body hasn't been read at all yet.
    func setupRewindBody(req *Request) *Request {
    	if req.Body == nil || req.Body == NoBody {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/cmd/link/link_test.go

    through the fog in divers places in the streets, much as the sun may, from the spongey fields, be seen to loom by husbandman and ploughboy. Most of the shops lighted two hours before their timeā€”as the gas seems to know, for it has a haggard and unwilling look.  	The raw afternoon is rawest, and the dense fog is densest, and the muddy streets are muddiest near that leaden-headed old obstruction, appropriate ornament for the threshold of a leaden-headed old corporation, Temple Bar. And hard by Temple...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    					// was fulfilled by another volume. We did this; fix it.
    					logger.V(4).Info("Synchronizing PersistentVolume, volume is bound by controller to a claim that is bound to another volume, unbinding", "volumeName", volume.Name)
    					if err = ctrl.unbindVolume(ctx, volume); err != nil {
    						return err
    					}
    					return nil
    				} else {
    					// The PV must have been created with this ptr; leave it alone.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Lens, I moved sometimes towards the Lens, sometimes from it, to find the Places where the Images of the blue and red Parts of the coloured Paper appeared most distinct. Those Places I easily knew by the Images of the black Lines which I had made by winding the Silk about the Paper. For the Images of those fine and slender Lines (which by reason of their Blackness were like Shadows on the Colours) were confused and scarce visible, unless when the Colours on either side of each Line were terminated most...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top