Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for afterward (0.25 sec)

  1. src/net/http/clientserver_test.go

    		// chunking and a flush at the first write. That's
    		// unnecessary with HTTP/2's framing, so the server
    		// is able to calculate the length while still sending
    		// trailers afterwards.
    		wantLen = len(body)
    		wantHeader["Content-Length"] = []string{fmt.Sprint(wantLen)}
    	}
    	if res.ContentLength != int64(wantLen) {
    		t.Errorf("ContentLength = %v; want %v", res.ContentLength, wantLen)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			continue
    		} else {
    			// Keep the container.
    			keepCount++
    			continue
    		}
    
    		// We need to kill the container, but if we also want to restart the
    		// container afterwards, make the intent clear in the message. Also do
    		// not kill the entire pod since we expect container to be running eventually.
    		if restart {
    			message = fmt.Sprintf("%s, will be restarted", message)
    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/math/big/float.go

    // no effect).
    func (z *Float) SetInt64(x int64) *Float {
    	u := x
    	if u < 0 {
    		u = -u
    	}
    	// We cannot simply call z.SetUint64(uint64(u)) and change
    	// the sign afterwards because the sign affects rounding.
    	return z.setBits64(x < 0, uint64(u))
    }
    
    // SetFloat64 sets z to the (possibly rounded) value of x and returns z.
    // If z's precision is 0, it is changed to 53 (and rounding will have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  4. src/runtime/asm_ppc64x.s

    	// POWER does not have a pause/yield instruction equivalent.
    	// Instead, we can lower the program priority by setting the
    	// Program Priority Register prior to the wait loop and set it
    	// back to default afterwards. On Linux, the default priority is
    	// medium-low. For details, see page 837 of the ISA 3.0.
    	OR	R1, R1, R1	// Set PPR priority to low
    again:
    	SUB	$1, R7
    	CMP	$0, R7
    	BNE	again
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    		go gcBgMarkWorker(ready)
    		releasem(mp)
    
    		// N.B. we intentionally wait on each goroutine individually
    		// rather than starting all in a batch and then waiting once
    		// afterwards. By running one goroutine at a time, we can take
    		// advantage of runnext to bounce back and forth between
    		// workers and this goroutine. In an overloaded application,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    				p.errorAt(pos, "empty type argument list")
    				f.Type = name
    			}
    			break
    		}
    
    		// A type argument list looks like a parameter list with only
    		// types. Parse a parameter list and decide afterwards.
    		list := p.paramList(nil, nil, _Rbrack, false)
    		if len(list) == 0 {
    			// The type parameter list is not [] but we got nothing
    			// due to other errors (reported by paramList). Treat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    		// while the second is used to provide a more timely status update during initialization and runs an one-shot update to the apiserver
    		// once the node becomes ready, then exits afterwards.
    		//
    		// Introduce some small jittering to ensure that over time the requests won't start
    		// accumulating at approximately the same time from the set of nodes due to priority and
    		// fairness effect.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    // GraphDef importer and SavedModel importer.
    //
    // A subclass is expected to call `PrepareConvert` first to perform necessary
    // preparation over the graph and also certain internal bookkeeping data.
    // Afterwards the other protected methods can be called.
    class ImporterBase {
     protected:
      explicit ImporterBase(
          const FunctionLibraryDefinition& flib, const GraphDebugInfo& debug_info,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	testTCPConnectionCloses(t, "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n", HandlerFunc(func(w ResponseWriter, r *Request) {
    		// Nothing. (if not hijacked, the server should close the connection
    		// afterwards)
    	}))
    }
    
    func send204(w ResponseWriter, r *Request) { w.WriteHeader(204) }
    func send304(w ResponseWriter, r *Request) { w.WriteHeader(304) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	// If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the
    	// scheduler will not attempt to schedule the pod.
    	//
    	// SchedulingGates can only be set at pod creation time, and be removed only afterwards.
    	//
    	// +optional
    	SchedulingGates []PodSchedulingGate
    	// ResourceClaims defines which ResourceClaims must be allocated
    	// and reserved before the Pod is allowed to start. The resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top