Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 204 for Signals (0.57 sec)

  1. src/syscall/exec_linux.go

    	Pgid       int // Child's process group ID if Setpgid.
    	// Pdeathsig, if non-zero, is a signal that the kernel will send to
    	// the child process when the creating thread dies. Note that the signal
    	// is sent on thread termination, which may happen before process termination.
    	// There are more details at https://go.dev/issue/27505.
    	Pdeathsig    Signal
    	Cloneflags   uintptr        // Flags for clone calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. pkg/kubelet/config/config.go

    		}
    		if firstSet && len(adds.Pods) == 0 && len(updates.Pods) == 0 && len(deletes.Pods) == 0 {
    			// Send an empty update when first seeing the source and there are
    			// no ADD or UPDATE or DELETE pods from the source. This signals kubelet that
    			// the source is ready.
    			s.updates <- *adds
    		}
    		// Only add reconcile support here, because kubelet doesn't support Snapshot update now.
    		if len(reconciles.Pods) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/config.go

    			config.Info.Version = "unversioned"
    		}
    	}
    }
    
    // DrainedNotify returns a lifecycle signal of genericapiserver already drained while shutting down.
    func (c *Config) DrainedNotify() <-chan struct{} {
    	return c.lifecycleSignals.InFlightRequestsDrained.Signaled()
    }
    
    // ShutdownInitiated returns a lifecycle signal of apiserver shutdown having been initiated.
    func (c *Config) ShutdownInitiatedNotify() <-chan struct{} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. src/internal/fuzz/worker.go

    					// Worker terminated by a signal that probably wasn't caused by a
    					// specific input to the fuzz function. For example, on Linux,
    					// the kernel (OOM killer) may send SIGKILL to a process using a lot
    					// of memory. Or the shell might send SIGHUP when the terminal
    					// is closed. Don't record a crasher.
    					return fmt.Errorf("fuzzing process terminated by unexpected signal; no crash will be recorded: %v", w.waitErr)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. src/runtime/stubs.go

    func gcWriteBarrier8()
    func duffzero()
    func duffcopy()
    
    // Called from linker-generated .initarray; declared for go vet; do NOT call from Go.
    func addmoduledata()
    
    // Injected by the signal handler for panicking signals.
    // Initializes any registers that have fixed meaning at calls but
    // are scratch in bodies and calls sigpanic.
    // On many platforms it just jumps to sigpanic.
    func sigpanic0()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types.go

    	// job should be run with.  Setting to null means that the success of any
    	// pod signals the success of all pods, and allows parallelism to have any positive
    	// value.  Setting to 1 means that parallelism is limited to 1 and the success of that
    	// pod signals the success of the job.
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  7. pkg/apis/batch/types.go

    	// job should be run with.  Setting to null means that the success of any
    	// pod signals the success of all pods, and allows parallelism to have any positive
    	// value.  Setting to 1 means that parallelism is limited to 1 and the success of that
    	// pod signals the success of the job.
    	// +optional
    	Completions *int32
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top