Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 397 for Signals (0.16 sec)

  1. src/internal/coverage/cfile/emit.go

    	cfw := encodecounter.NewCoverageDataWriter(w, coverage.CtrULeb128)
    	if err := cfw.Write(finalHash, capturedOsArgs, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    // MarkProfileEmitted signals the coverage machinery that
    // coverage data output files have already been written out, and there
    // is no need to take any additional action at exit time. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                        ${server.callFromBuild("wait")}
                        archiveOperations.tarTree(parameters.archiveFile).visit { fcd ->
                            // This signals that the extraction has started. We're inside the lock at this point.
                            ${server.callFromBuild("extract")}
                            println "Extracting for thread " + parameters.index.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. src/runtime/profbuf.go

    		// for the race detector. The actual synchronization is handled
    		// by the fact that the signal handler only reads from the current
    		// goroutine and uses atomics to write the updated queue indices,
    		// and then the read-out from the signal handler buffer uses
    		// atomics to read those queue indices.
    		raceacquire(unsafe.Pointer(&labelSync))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/html/template/transition.go

    	if i := bytes.Index(s, commentEnd); i != -1 {
    		return context{}, i + 3
    	}
    	return c, len(s)
    }
    
    // specialTagEndMarkers maps element types to the character sequence that
    // case-insensitively signals the end of the special tag body.
    var specialTagEndMarkers = [...][]byte{
    	elementScript:   []byte("script"),
    	elementStyle:    []byte("style"),
    	elementTextarea: []byte("textarea"),
    	elementTitle:    []byte("title"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	SIGUSR1   = Signal(16)
    	SIGUSR2   = Signal(17)
    	SIGABND   = Signal(18)
    	SIGCONT   = Signal(19)
    	SIGCHLD   = Signal(20)
    	SIGTTIN   = Signal(21)
    	SIGTTOU   = Signal(22)
    	SIGIO     = Signal(23)
    	SIGQUIT   = Signal(24)
    	SIGTSTP   = Signal(25)
    	SIGTRAP   = Signal(26)
    	SIGIOERR  = Signal(27)
    	SIGWINCH  = Signal(28)
    	SIGXCPU   = Signal(29)
    	SIGXFSZ   = Signal(30)
    	SIGVTALRM = Signal(31)
    	SIGPROF   = Signal(32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. src/runtime/mgclimit.go

    	// running.
    	windowTotalTime -= idleTime
    
    	l.accumulate(windowTotalTime-windowGCTime, windowGCTime)
    }
    
    // accumulate adds time to the bucket and signals whether the limiter is enabled.
    //
    // This is an internal function that deals just with the bucket. Prefer update.
    // l.lock must be held.
    func (l *gcCPULimiterState) accumulate(mutatorTime, gcTime int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. pilot/pkg/xds/discovery.go

    			// Get the next proxy to push. This will block if there are no updates required.
    			client, push, shuttingdown := queue.Dequeue()
    			if shuttingdown {
    				return
    			}
    			recordPushTriggers(push.Reason)
    			// Signals that a push is done by reading from the semaphore, allowing another send on it.
    			doneFunc := func() {
    				queue.MarkDone(client)
    				<-semaphore
    			}
    
    			proxiesQueueTime.Record(time.Since(push.Start).Seconds())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. misc/ios/go_ios_exec.go

    	sys.exit(1)
    
    # Don't stop on signals.
    sigs = process.GetUnixSignals()
    for i in range(0, sigs.GetNumSignals()):
    	sig = sigs.GetSignalAtIndex(i)
    	sigs.SetShouldStop(sig, False)
    	sigs.SetShouldNotify(sig, False)
    
    event = lldb.SBEvent()
    running = False
    prev_handler = None
    
    def signal_handler(signal, frame):
    	process.Signal(signal)
    
    def run_program():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  9. src/runtime/runtime2.go

    const (
    	_SigNotify   = 1 << iota // let signal.Notify have signal, even if from kernel
    	_SigKill                 // if signal.Notify doesn't take it, exit quietly
    	_SigThrow                // if signal.Notify doesn't take it, exit loudly
    	_SigPanic                // if the signal is from the kernel, panic
    	_SigDefault              // if the signal isn't explicitly requested, don't monitor it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/converter_gen.cc

    #include <optional>
    #include <sstream>
    #include <string>
    #include <vector>
    
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "llvm/Support/InitLLVM.h"
    #include "llvm/Support/Signals.h"
    #include "llvm/TableGen/Error.h"
    #include "llvm/TableGen/Main.h"
    #include "llvm/TableGen/Record.h"
    #include "llvm/TableGen/TableGenBackend.h"
    #include "mlir/TableGen/Attribute.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
Back to top