Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,426 for ahead (0.06 sec)

  1. docs/en/docs/async.md

        These are very technical details of how **FastAPI** works underneath.
    
        If you have quite some technical knowledge (coroutines, threads, blocking, etc.) and are curious about how FastAPI handles `async def` vs normal `def`, go ahead.
    
    ### Path operation functions
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ppc64/ssa.go

    		}
    		v.Block.Func.RegArgs = nil
    
    		ssagen.CheckArgReg(v)
    
    	case ssa.OpPPC64DIVD:
    		// For now,
    		//
    		// cmp arg1, -1
    		// be  ahead
    		// v = arg0 / arg1
    		// b over
    		// ahead: v = - arg0
    		// over: nop
    		r := v.Reg()
    		r0 := v.Args[0].Reg()
    		r1 := v.Args[1].Reg()
    
    		p := s.Prog(ppc64.ACMP)
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = r1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	//
    	// 4. Wait for mark termination N+1 to complete.
    	//
    	// 5. Help with sweep N+1 until it's done.
    	//
    	// This all has to be written to deal with the fact that the
    	// GC may move ahead on its own. For example, when we block
    	// until mark termination N, we may wake up in cycle N+2.
    
    	// Wait until the current sweep termination, mark, and mark
    	// termination complete.
    	n := work.cycles.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. cmd/endpoint.go

    		}
    
    	} else {
    		// Only check if the arg is an ip address and ask for scheme since its absent.
    		// localhost, example.com, any FQDN cannot be disambiguated from a regular file path such as
    		// /mnt/export1. So we go ahead and start the minio server in FS modes in these cases.
    		if isHostIP(arg) {
    			return ep, fmt.Errorf("invalid URL endpoint format: missing scheme http or https")
    		}
    		absArg, err := filepath.Abs(arg)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. src/runtime/mgcsweep.go

    		// at the end of every batch. Furthermore, it only yields its time if there
    		// isn't spare idle time available on other cores. If there's available idle
    		// time, helping to sweep can reduce allocation latencies by getting ahead of
    		// the proportional sweeper and having spans ready to go for allocation.
    		const sweepBatchSize = 10
    		nSwept := 0
    		for sweepone() != ^uintptr(0) {
    			nSwept++
    			if nSwept%sweepBatchSize == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. cmd/object-api-utils.go

    	// DNS separator (period), used for bucket name validation.
    	dnsDelimiter = "."
    	// On compressed files bigger than this;
    	compReadAheadSize = 100 << 20
    	// Read this many buffers ahead.
    	compReadAheadBuffers = 5
    	// Size of each buffer.
    	compReadAheadBufSize = 1 << 20
    	// Pad Encrypted+Compressed files to a multiple of this.
    	compPadEncrypted = 256
    	// Disable compressed file indices below this size
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    	// - Success: the plugin gets executed successfully and the pod can be made schedulable.
    	// - Error: the plugin aborts due to some internal error.
    	//
    	// Informational plugins should be configured ahead of other ones, and always return Unschedulable status.
    	// Optionally, a non-nil PostFilterResult may be returned along with a Success status. For example,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. src/net/http/clientserver_test.go

    	h12Compare{
    		ReqFunc: (*Client).Head,
    		Handler: func(w ResponseWriter, r *Request) {
    			if r.Method != "HEAD" {
    				t.Errorf("unexpected method %q", r.Method)
    			}
    			w.Header().Set("Content-Length", "1235")
    		},
    	}.run(t)
    }
    
    func TestH12_Head_ImplicitLen(t *testing.T) {
    	h12Compare{
    		ReqFunc: (*Client).Head,
    		Handler: func(w ResponseWriter, r *Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. src/encoding/json/encode.go

    						typ:       ft,
    						omitEmpty: opts.Contains("omitempty"),
    						quoted:    quoted,
    					}
    					field.nameBytes = []byte(field.name)
    
    					// Build nameEscHTML and nameNonEsc ahead of time.
    					nameEscBuf = appendHTMLEscape(nameEscBuf[:0], field.nameBytes)
    					field.nameEscHTML = `"` + string(nameEscBuf) + `":`
    					field.nameNonEsc = `"` + field.name + `":`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    		// Check to see if we need to block for more data in this generation
    		// or if we need to move our generation forward.
    		if !trace.full[gen%2].empty() {
    			break
    		}
    		// Most of the time readerGen is one generation ahead of flushedGen, as the
    		// current generation is being read from. Then, once the last buffer is flushed
    		// into readerGen, flushedGen will rise to meet it. At this point, the tracer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top