Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,433 for Dead (0.07 sec)

  1. docs/en/docs/deployment/concepts.md

    * Kubernetes with an Ingress Controller like Nginx
        * With an external component like cert-manager for certificate renewals
    * Handled internally by a cloud provider as part of their services (read below 👇)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. src/runtime/vlop_arm.s

    	// the stack due to deferred functions.
    	// In the latter case, the stack can grow arbitrarily,
    	// and garbage collection can happen, and those
    	// operations care about pointers, but in that case
    	// the calling frame is dead, and so are the saved
    	// registers. So we can claim there are no pointers here.
    	NO_LOCAL_POINTERS
    	MOVW	Rq, 4(R13)
    	MOVW	Rr, 8(R13)
    	MOVW	Rs, 12(R13)
    	MOVW	RM, 16(R13)
    
    	MOVW	Rn, Rr			/* numerator */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  3. 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)
  4. src/internal/coverage/decodecounter/decodecounterfile.go

    // table, and segment args table.
    func (cdr *CounterDataReader) readSegmentPreamble() error {
    	// Read segment header.
    	if err := binary.Read(cdr.mr, binary.LittleEndian, &cdr.shdr); err != nil {
    		return err
    	}
    	if cdr.debug {
    		fmt.Fprintf(os.Stderr, "=-= read counter segment header: %+v", cdr.shdr)
    		fmt.Fprintf(os.Stderr, " FcnEntries=0x%x StrTabLen=0x%x ArgsLen=0x%x\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    	//
    	// For example, it would be invalid to merge load into target in
    	// the following situation because newmem has killed oldmem
    	// before target is reached:
    	//     load = read ... oldmem
    	//   newmem = write ... oldmem
    	//     arg0 = read ... newmem
    	//   target = add arg0 load
    	//
    	// If the argument comes from a different block then we can exclude
    	// it immediately because it must dominate load (which is in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/html/template/js_test.go

    		// left to right.
    		{jsCtxRegexp, "x---"}, // A postfix -- then a -.
    		// return followed by a slash returns the regexp literal or the
    		// slash starts a regexp literal in an expression statement that
    		// is dead code.
    		{jsCtxRegexp, "return"},
    		{jsCtxRegexp, "return "},
    		{jsCtxRegexp, "return\t"},
    		{jsCtxRegexp, "return\n"},
    		{jsCtxRegexp, "return\u2028"},
    		// Identifiers can be divided and cannot validly be preceded by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top