Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for curr (0.54 sec)

  1. src/net/http/h2_bundle.go

    	// The stream may be currently idle but cannot be opened or closed.
    	if curr := ws.nodes[streamID]; curr != nil {
    		if curr.state != http2priorityNodeIdle {
    			panic(fmt.Sprintf("stream %d already opened", streamID))
    		}
    		curr.state = http2priorityNodeOpen
    		return
    	}
    
    	// RFC 7540, Section 5.3.5:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__batch__v1_openapi.json

              }
            },
            {
              "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
              "in": "query",
              "name": "pretty",
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		// and the call site which uses it. See #49282.
    		if s.curBlock.ID == s.f.Entry.ID && s.hasOpenDefers {
    			b := s.endBlock()
    			b.Kind = ssa.BlockPlain
    			curb := s.f.NewBlock(ssa.BlockPlain)
    			b.AddEdgeTo(curb)
    			s.startBlock(curb)
    		}
    
    		for i, n := range args {
    			callArgs = append(callArgs, s.putArg(n, t.Param(i).Type))
    		}
    
    		callArgs = append(callArgs, s.mem())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top