Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for call27 (0.16 sec)

  1. src/net/http/h2_bundle.go

    	if call, ok := p.dialing[addr]; ok {
    		// A dial is already in-flight. Don't start another.
    		return call
    	}
    	call := &http2dialCall{p: p, done: make(chan struct{}), ctx: ctx}
    	if p.dialing == nil {
    		p.dialing = make(map[string]*http2dialCall)
    	}
    	p.dialing[addr] = call
    	go call.dial(call.ctx, addr)
    	return call
    }
    
    // run in its own goroutine.
    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. CHANGELOG/CHANGELOG-1.30.md

    ### Bug or Regression
    
    - Currently, NodeAdded QueueingHint could not always be called because of the internal feature called preCheck.
      It's definitely not something expected for plugin developers,
      and we're trying to eventually remove preCheck completely to fix this.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// Stdin if true indicates that stdin is to be redirected for the exec call
    	Stdin bool
    
    	// Stdout if true indicates that stdout is to be redirected for the exec call
    	Stdout bool
    
    	// Stderr if true indicates that stderr is to be redirected for the exec call
    	Stderr bool
    
    	// TTY if true indicates that a tty will be allocated for the exec call
    	TTY bool
    
    	// Container in which to execute the command.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"stdin":     "Redirect the standard input stream of the pod for this call. Defaults to false.",
    	"stdout":    "Redirect the standard output stream of the pod for this call.",
    	"stderr":    "Redirect the standard error stream of the pod for this call.",
    	"tty":       "TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    // callTargetLSym returns the correct LSym to call 'callee' using its ABI.
    func callTargetLSym(callee *ir.Name) *obj.LSym {
    	if callee.Func == nil {
    		// TODO(austin): This happens in case of interface method I.M from imported package.
    		// It's ABIInternal, and would be better if callee.Func was never nil and we didn't
    		// need this case.
    		return callee.Linksym()
    	}
    
    	return callee.LinksymABI(callee.Func.ABI)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// Defaults to false.
    	// +optional
    	Stdin bool `json:"stdin,omitempty" protobuf:"varint,1,opt,name=stdin"`
    
    	// Redirect the standard output stream of the pod for this call.
    	// +optional
    	Stdout bool `json:"stdout,omitempty" protobuf:"varint,2,opt,name=stdout"`
    
    	// Redirect the standard error stream of the pod for this call.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewritePPC64.go

    			break
    		}
    		call := v_0
    		if call.Op != OpPPC64CALLstatic || len(call.Args) != 4 {
    			break
    		}
    		sym := auxToCall(call.Aux)
    		mem := call.Args[3]
    		dst := call.Args[0]
    		src := call.Args[1]
    		call_2 := call.Args[2]
    		if call_2.Op != OpPPC64MOVDconst {
    			break
    		}
    		sz := auxIntToInt64(call_2.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    - Fixed two regressions introduced by the `PodDisruptionConditions` feature (on by default in 1.26):
      - pod eviction API calls returned spurious precondition errors and required a second evict API call to succeed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - Added new feature gate called `RuntimeClassInImageCriApi` to address `kubelet` changes needed for KEP 4216.
      Noteable changes:
      1. Populate new `RuntimeHandler` field in CRI's `ImageSpec` struct during image pulls from container runtimes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top