Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for unblocksig (0.15 sec)

  1. src/os/signal/doc.go

    code, the handler generally forwards the signal to the non-Go code, as
    follows. If the signal is SIGPROF, the Go handler does
    nothing. Otherwise, the Go handler removes itself, unblocks the
    signal, and raises it again, to invoke any non-Go handler or default
    system handler. If the program does not exit, the Go handler then
    reinstalls itself and continues execution of the program.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/internal/poll/fd_unix.go

    // destroy method when there are no remaining references.
    func (fd *FD) Close() error {
    	if !fd.fdmu.increfAndClose() {
    		return errClosing(fd.isFile)
    	}
    
    	// Unblock any I/O.  Once it all unblocks and returns,
    	// so that it cannot be referring to fd.sysfd anymore,
    	// the final decref will close fd.sysfd. This should happen
    	// fairly quickly, since all the I/O is non-blocking, and any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. internal/grid/connection.go

    		}
    		// We can expect to receive unblocks for closed muxes
    		return
    	}
    	v.unblockSend(m.Seq)
    }
    
    func (c *Connection) handleUnblockSrvMux(m message) {
    	if m.Payload != nil {
    		PutByteBuffer(m.Payload)
    	}
    	m.Payload = nil
    	if v, ok := c.inStream.Load(m.MuxID); ok {
    		v.unblockSend(m.Seq)
    		return
    	}
    	// We can expect to receive unblocks for closed muxes
    	if debugPrint {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/reconciler.go

    			}
    
    			mu.Lock()
    			setStatus(componentStatus, c, status, err)
    			mu.Unlock()
    
    			// Signal all the components that depend on us.
    			for _, ch := range ComponentDependencies[c] {
    				scope.Infof("Unblocking dependency %s.", ch)
    				h.dependencyWaitCh[ch] <- struct{}{}
    			}
    		}()
    	}
    	wg.Wait()
    
    	metrics.ReportOwnedResourceCounts()
    
    	out := &v1alpha1.InstallStatus{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. src/internal/trace/internal/oldtrace/parser.go

    	Fn uint64
    	// string ID of the file name
    	File uint64
    	Line int
    }
    
    const (
    	// Special P identifiers:
    	FakeP    = 1000000 + iota
    	TimerP   // contains timer unblocks
    	NetpollP // contains network unblocks
    	SyscallP // contains returns from syscalls
    	GCP      // contains GC state
    	ProfileP // contains recording of CPU profile samples
    )
    
    // Trace is the result of Parse.
    type Trace struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. src/runtime/chan_test.go

    			}
    			if v, ok := <-c; v != 0 || ok {
    				t.Fatalf("chan[%d]: received %v/%v, expected %v/%v", chanCap, v, ok, 0, false)
    			}
    		}
    
    		{
    			// Ensure that close unblocks receive.
    			c := make(chan int, chanCap)
    			done := make(chan bool)
    			go func() {
    				v, ok := <-c
    				done <- v == 0 && ok == false
    			}()
    			time.Sleep(time.Millisecond)
    			close(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/graph_builder.go

    	// After that it is safe to start them here, before that it is not.
    	informersStarted <-chan struct{}
    
    	// stopCh drives shutdown. When a receive from it unblocks, monitors will shut down.
    	// This channel is also protected by monitorLock.
    	stopCh <-chan struct{}
    
    	// running tracks whether Run() has been called.
    	// it is protected by monitorLock.
    	running bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    			counter.Add(1) // account for the following goroutine
    			go func() {
    				defer counter.Add(-1) // account completion of this goroutine
    				clk.Sleep(time.Second)
    				expectQNCounts(2, 0, 1)
    				// account for unblocking the goroutine that waits on cancelation
    				counter.Add(1)
    				cancel2()
    			}()
    			req2, idle2a := qs.StartRequest(ctx2, &fcrequest.WorkEstimate{InitialSeats: 1}, 2, "", "fs2", "test", "two", queueNoteFn(2))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  9. src/runtime/trace.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Go execution tracer.
    // The tracer captures a wide range of execution events like goroutine
    // creation/blocking/unblocking, syscall enter/exit/block, GC-related events,
    // changes of heap size, processor start/stop, etc and writes them to a buffer
    // in a compact form. A precise nanosecond-precision timestamp and a stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

              interrupted = true;
            }
          }
        } finally {
          if (interrupted) {
            Thread.currentThread().interrupt();
          }
        }
      }
    
      /** Unblocks all threads and runs all listeners. */
      private static void complete(AbstractFuture<?> param, boolean callInterruptTask) {
        // Declare a "true" local variable so that the Checker Framework will infer nullness.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
Back to top