Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for psignal (0.14 sec)

  1. src/runtime/pprof/pprof_test.go

    }
    
    func blockCond(t *testing.T) {
    	var mu sync.Mutex
    	c := sync.NewCond(&mu)
    	mu.Lock()
    	go func() {
    		awaitBlockedGoroutine(t, "sync.Cond.Wait", "blockCond", 1)
    		mu.Lock()
    		c.Signal()
    		mu.Unlock()
    	}()
    	c.Wait()
    	mu.Unlock()
    }
    
    // See http://golang.org/cl/299991.
    func TestBlockProfileBias(t *testing.T) {
    	rate := int(1000) // arbitrary value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

    // PredicateFor(Y)).  Roughtly speaking, we abstractly interpret each node on
    // the "liveness" domain, where values in the domain represent if a tensor
    // carries a dead signal or not.
    //
    //
    // DEALING WITH CYCLES
    // -------------------
    //
    // We map Merge nodes that are the target of a backedge to AndRecurrence
    // instances.  An AndRecurrence with start() = S and step() = X, printed as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    				return 0, err
    			}
    		}
    	}
    
    	n, _ := c.input.Read(b)
    
    	// If a close-notify alert is waiting, read it so that we can return (n,
    	// EOF) instead of (n, nil), to signal to the HTTP response reading
    	// goroutine that the connection is now closed. This eliminates a race
    	// where the HTTP response reading goroutine would otherwise not observe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react
    	// by sending a graceful termination signal to the containers in the pod. After that 30 seconds,
    	// the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup,
    	// remove the pod from the API. In the presence of network partitions, this object may still
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  5. src/crypto/tls/common.go

    	signatureEd25519
    )
    
    // directSigning is a standard Hash value that signals that no pre-hashing
    // should be performed, and that the input should be signed directly. It is the
    // hash function associated with the Ed25519 signature scheme.
    var directSigning crypto.Hash = 0
    
    // helloRetryRequestRandom is set as the Random value of a ServerHello
    // to signal that the message is actually a HelloRetryRequest.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    				throw("gcBgMarkWorker: unexpected gcMarkWorkerMode")
    			case gcMarkWorkerDedicatedMode:
    				gcDrainMarkWorkerDedicated(&pp.gcw, true)
    				if gp.preempt {
    					// We were preempted. This is
    					// a useful signal to kick
    					// everything out of the run
    					// queue so it can run
    					// somewhere else.
    					if drainQ, n := runqdrain(pp); n > 0 {
    						lock(&sched.lock)
    						globrunqputbatch(&drainQ, int32(n))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/obj.go

    		prologue.Spadj = int32(stacksize)
    
    		prologue = ctxt.EndUnsafePoint(prologue, newprog, -1)
    
    		// On Linux, in a cgo binary we may get a SIGSETXID signal early on
    		// before the signal stack is set, as glibc doesn't allow us to block
    		// SIGSETXID. So a signal may land on the current stack and clobber
    		// the content below the SP. We store the LR again after the SP is
    		// decremented.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  8. pkg/controller/endpoint/endpoints_controller_test.go

    	})
    	return httptest.NewServer(mux), &fakeEndpointsHandler
    }
    
    // makeBlockingEndpointDeleteTestServer will signal the blockNextAction channel on endpoint "POST" & "DELETE" requests. All
    // block endpoint "DELETE" requestsi will wait on a blockDelete signal to delete endpoint. If controller is nil, a error will
    // be sent in the response.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    	podsSynced bool
    
    	// Tracks all running per-pod goroutines - per-pod goroutine will be
    	// processing updates received through its corresponding channel. Sending
    	// a message on this channel will signal the corresponding goroutine to
    	// consume podSyncStatuses[uid].pendingUpdate if set.
    	podUpdates map[types.UID]chan struct{}
    	// Tracks by UID the termination status of a pod - syncing, terminating,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	for {
    		if currOff >= len(msg) {
    			return off, errBaseLen
    		}
    		c := int(msg[currOff])
    		currOff++
    		switch c & 0xC0 {
    		case 0x00: // String segment
    			if c == 0x00 {
    				// A zero length signals the end of the name.
    				break Loop
    			}
    			endOff := currOff + c
    			if endOff > len(msg) {
    				return off, errCalcLen
    			}
    
    			// Reject names containing dots.
    			// See issue golang/go#56246
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top