Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 203 for DEAD (0.04 sec)

  1. src/net/http/cgi/host.go

    		// the deferred cmd.Wait above if the error was just
    		// the client (rw) going away. If it was a read error
    		// (because the child died itself), then the extra
    		// kill of an already-dead process is harmless (the PID
    		// won't be reused until the Wait above).
    		cmd.Process.Kill()
    	}
    }
    
    func (h *Handler) printf(format string, v ...any) {
    	if h.Logger != nil {
    		h.Logger.Printf(format, v...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// restarts, pod will read the restart count from the registered dead container, increment
    	// it to get the new restart count, and then add a label with the new restart count on
    	// the newly started container.
    	// However, there are some limitations of this method:
    	//	1. When all dead containers were garbage collected, the container status could
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. src/runtime/stkframe.go

    // stack object list for frame.
    func (frame *stkframe) getStackMap(debug bool) (locals, args bitvector, objs []stackObjectRecord) {
    	targetpc := frame.continpc
    	if targetpc == 0 {
    		// Frame is dead. Return empty bitvectors.
    		return
    	}
    
    	f := frame.fn
    	pcdata := int32(-1)
    	if targetpc != f.entry() {
    		// Back up to the CALL. If we're at the function entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/server-workers.md

    * Then it detects that it has to use the worker class at `uvicorn.workers.UvicornWorker`.
    * And then it starts **4 workers**, each with its own PID: `19511`, `19513`, `19514`, and `19515`.
    
    Gunicorn would also take care of managing **dead processes** and **restarting** new ones if needed to keep the number of workers. So that helps in part with the **restart** concept from the list above.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. test/live_regabi.go

    	select { // ERROR "stack object .autotmp_[0-9]+ \[2\]runtime.scase$"
    	case <-c:
    		return nil
    	case <-c:
    		return nil
    	}
    }
    
    func f11b() *int {
    	p := new(int)
    	if b {
    		// At this point p is dead: the code here cannot
    		// get to the bottom of the function.
    		// This used to have a spurious "live at call to printint: p".
    		printint(1) // nothing live here!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. test/goto.go

    func _() {
    	goto L // ERROR "goto L jumps over declaration of y at LINE+3|goto jumps over declaration"
    	x := 1 // GCCGO_ERROR "defined here"
    	_ = x
    	y := 1
    	_ = y
    L:
    }
    
    // goto not okay even if code path is dead
    func _() {
    	goto L // ERROR "goto L jumps over declaration of y at LINE+3|goto jumps over declaration"
    	x := 1 // GCCGO_ERROR "defined here"
    	_ = x
    	y := 1
    	_ = y
    	return
    L:
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 02:27:58 UTC 2017
    - 8.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    		}
    	}()
    
    	return serverShutdownCh, listenerStoppedCh, nil
    }
    
    // tcpKeepAliveListener sets TCP keep-alive timeouts on accepted
    // connections. It's used by ListenAndServe and ListenAndServeTLS so
    // dead TCP connections (e.g. closing laptop mid-download) eventually
    // go away.
    //
    // Copied from Go 1.7.2 net/http/server.go
    type tcpKeepAliveListener struct {
    	net.Listener
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    	visitOrder []*Block
    
    	// blockOrder[b.ID] corresponds to the index of block b in visitOrder.
    	blockOrder []int32
    
    	// whether to insert instructions that clobber dead registers at call sites
    	doClobber bool
    }
    
    type endReg struct {
    	r register
    	v *Value // pre-regalloc value held in this register (TODO: can we use ID here?)
    	c *Value // cached version of the value
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    )
    
    type deadValueChoice bool
    
    const (
    	leaveDeadValues  deadValueChoice = false
    	removeDeadValues                 = true
    )
    
    // deadcode indicates whether rewrite should try to remove any values that become dead.
    func applyRewrite(f *Func, rb blockRewriter, rv valueRewriter, deadcode deadValueChoice) {
    	// repeat rewrites until we find no more rewrites
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. schema/schema.go

    }
    
    // This unrolling is needed to show to the compiler the exact set of methods
    // that can be used on the modelType.
    // Prior to go1.22 any use of MethodByName would cause the linker to
    // abandon dead code elimination for the entire binary.
    // As of go1.22 the compiler supports one special case of a string constant
    // being passed to MethodByName. For enterprise customers or those building
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top