Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for OUT (0.05 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Driver = in.Driver
    	out.VolumeHandle = in.VolumeHandle
    	out.ReadOnly = in.ReadOnly
    	out.FSType = in.FSType
    	out.VolumeAttributes = *(*map[string]string)(unsafe.Pointer(&in.VolumeAttributes))
    	out.ControllerPublishSecretRef = (*core.SecretReference)(unsafe.Pointer(in.ControllerPublishSecretRef))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    func http2filterOutClientConn(in []*http2ClientConn, exclude *http2ClientConn) []*http2ClientConn {
    	out := in[:0]
    	for _, v := range in {
    		if v != exclude {
    			out = append(out, v)
    		}
    	}
    	// If we filtered it out, zero out the last item to prevent
    	// the GC from seeing it.
    	if len(in) != len(out) {
    		in[len(in)-1] = nil
    	}
    	return out
    }
    
    // noDialClientConnPool is an implementation of http2.ClientConnPool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions"
                  }
                ],
                "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
              },
              "propagationPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    .uk-nav-sub{padding-left:15px}}.uk-close{color:#999;transition:.1s ease-in-out;transition-property:color,opacity}.uk-close:focus,.uk-close:hover{color:#666;outline:0}.uk-spinner>*{animation:uk-spinner-rotate 1.4s linear infinite}@keyframes uk-spinner-rotate{0%{transform:rotate(0)}100%{transform:rotate(270deg)}}.uk-spinner>*>*{stroke-dasharray:88px;stroke-dashoffset:0;transform-origin:center;animation:uk-spinner-dash 1.4s ease-in-out infinite;stroke-width:1;stroke-linecap:round}@keyframes uk-spinner-da...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

                "version": "v1"
              }
            ]
          },
          "io.k8s.api.networking.v1.NetworkPolicyEgressRule": {
            "description": "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8",
            "properties": {
              "ports": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

            "properties": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    //
    //   - Offset of the deferBits variable
    //   - Offset of the first closure slot (the rest are laid out consecutively).
    func (s *state) emitOpenDeferInfo() {
    	firstOffset := s.openDefers[0].closureNode.FrameOffset()
    
    	// Verify that cmpstackvarlt laid out the slots in order.
    	for i, r := range s.openDefers {
    		have := r.closureNode.FrameOffset()
    		want := firstOffset + int64(i)*int64(types.PtrSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                "format": "int64",
                "type": "integer"
              },
              "reason": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.6.md

      * Pods are placed under a new cgroup hierarchy by default. This feature requires
        draining and restarting the node as part of upgrades. To opt-out set
        `--cgroups-per-qos=false`.
      * If `kube-reserved` and/or `system-reserved` are specified, node allocatable
        will be enforced on all pods by default. To opt-out set
        `--enforce-node-allocatable=””`
      * Hard Eviction Thresholds will be subtracted from Capacity while calculating
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.13.md

    ### SIG AWS
    
    In v1.13 we worked on tighter integrations of Kubernetes API objects with AWS services. These include three out-of-tree alpha feature releases:
    
    1) Alpha for AWS ALB (Application Load Balancer) integration to Kubernetes Ingress resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
Back to top