Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for curg (0.04 sec)

  1. 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)
  2. pkg/proxy/iptables/proxier_test.go

    			}
    
    			for i := range tc.previousEndpoints {
    				prev, curr := tc.previousEndpoints[i], tc.currentEndpoints[i]
    				switch {
    				case prev == nil:
    					fp.OnEndpointSliceAdd(curr)
    				case curr == nil:
    					fp.OnEndpointSliceDelete(prev)
    				default:
    					fp.OnEndpointSliceUpdate(prev, curr)
    				}
    			}
    			result := fp.endpointsMap.Update(fp.endpointsChanges)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	STA_CLK       = 0x8000
    )
    
    const (
    	TIME_OK    = 0x0
    	TIME_INS   = 0x1
    	TIME_DEL   = 0x2
    	TIME_OOP   = 0x3
    	TIME_WAIT  = 0x4
    	TIME_ERROR = 0x5
    	TIME_BAD   = 0x5
    )
    
    type Rlimit struct {
    	Cur uint64
    	Max uint64
    }
    
    type _Gid_t uint32
    
    type StatxTimestamp struct {
    	Sec  int64
    	Nsec uint32
    	_    int32
    }
    
    type Statx_t struct {
    	Mask             uint32
    	Blksize          uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top