Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for accesskey (0.18 sec)

  1. pkg/apis/core/types.go

    	TerminationMessagePathDefault = "/dev/termination-log"
    )
    
    // Volume represents a named volume in a pod that may be accessed by any containers in the pod.
    type Volume struct {
    	// Required: This must be a DNS_LABEL.  Each volume in a pod must have
    	// a unique name.
    	Name string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"nodeAffinity":                  "nodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string volumeMode = 8;
    
      // nodeAffinity defines constraints that limit what nodes this volume can be accessed from.
      // This field influences the scheduling of pods that use this volume.
      // +optional
      optional VolumeNodeAffinity nodeAffinity = 9;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-62892`](https://youtrack.jetbrains.com/issue/KT-62892) K2 IDE. Java outer class from other module is not resolved when nested class is accessed with fq name in a type position
    - [`KT-62888`](https://youtrack.jetbrains.com/issue/KT-62888) K2 IDE. IDE infers reference to `KMutableProperty` as reference to just `KProperty`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. doc/go_spec.html

    The length of a string <code>s</code> can be discovered using
    the built-in function <a href="#Length_and_capacity"><code>len</code></a>.
    The length is a compile-time constant if the string is a constant.
    A string's bytes can be accessed by integer <a href="#Index_expressions">indices</a>
    0 through <code>len(s)-1</code>.
    It is illegal to take the address of such an element; if
    <code>s[i]</code> is the <code>i</code>'th byte of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// NamespaceNodeLease is the namespace where we place node lease objects (used for node heartbeats)
    	NamespaceNodeLease string = "kube-node-lease"
    )
    
    // Volume represents a named volume in a pod that may be accessed by any container in the pod.
    type Volume struct {
    	// name of the volume.
    	// Must be a DNS_LABEL and unique within the pod.
    	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    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. CHANGELOG/CHANGELOG-1.28.md

    - CEL authorizer checks no longer raise runtime errors. Calls to "check" will always return a decision object and the authorization error (if any) can be accessed within expressions using the new decision methods "errored" and "error". ([#118804](https://github.com/kubernetes/kubernetes/pull/118804), [@benluddy](https://github.com/benluddy)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  8. prow/config/calico.yaml

                    type: boolean
                  bpfDSROptoutCIDRs:
                    description: BPFDSROptoutCIDRs is a list of CIDRs which are excluded
                      from DSR. That is, clients in those CIDRs will accesses nodeports
                      as if BPFExternalServiceMode was set to Tunnel.
                    items:
                      type: string
                    type: array
                  bpfDataIfacePattern:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    		s.endBlock().SetControl(mem)
    	}
    	s.startBlock(bNext)
    
    	// In Spectre index mode, apply an appropriate mask to avoid speculative out-of-bounds accesses.
    	if base.Flag.Cfg.SpectreIndex {
    		op := ssa.OpSpectreIndex
    		if kind != ssa.BoundsIndex && kind != ssa.BoundsIndexU {
    			op = ssa.OpSpectreSliceIndex
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	return nil
    }
    
    // noDialH2RoundTripper is a RoundTripper which only tries to complete the request
    // if there's already has a cached connection to the host.
    // (The field is exported so it can be accessed via reflect from net/http; tested
    // by TestNoDialH2RoundTripperType)
    type http2noDialH2RoundTripper struct{ *http2Transport }
    
    func (rt http2noDialH2RoundTripper) RoundTrip(req *Request) (*Response, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top