Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Filetime (0.19 sec)

  1. pkg/apis/core/types.go

    	// NFS represents an NFS mount on the host that shares a pod's lifetime
    	// +optional
    	NFS *NFSVolumeSource
    	// RBD represents a Rados Block Device mount on the host that shares a pod's lifetime
    	// +optional
    	RBD *RBDPersistentVolumeSource
    	// Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
    	// +optional
    	Quobyte *QuobyteVolumeSource
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // Added capabilities
      // +optional
      repeated string add = 1;
    
      // Removed capabilities
      // +optional
      repeated string drop = 2;
    }
    
    // Represents a Ceph Filesystem mount that lasts the lifetime of a pod
    // Cephfs volumes do not support ownership management or SELinux relabeling.
    message CephFSPersistentVolumeSource {
      // monitors is Required: Monitors is a collection of Ceph monitors
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"iscsi":                 "iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // +listType=atomic
      repeated string add = 1;
    
      // Removed capabilities
      // +optional
      // +listType=atomic
      repeated string drop = 2;
    }
    
    // Represents a Ceph Filesystem mount that lasts the lifetime of a pod
    // Cephfs volumes do not support ownership management or SELinux relabeling.
    message CephFSPersistentVolumeSource {
      // monitors is Required: Monitors is a collection of Ceph monitors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// mount host directories as read/write.
    	// +optional
    	HostPath *HostPathVolumeSource `json:"hostPath,omitempty" protobuf:"bytes,1,opt,name=hostPath"`
    	// emptyDir represents a temporary directory that shares a pod's lifetime.
    	// More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir
    	// +optional
    	EmptyDir *EmptyDirVolumeSource `json:"emptyDir,omitempty" protobuf:"bytes,2,opt,name=emptyDir"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "rbd": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.RBDVolumeSource"
                  }
                ],
                "description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.21.md

      - By default, injected tokens are given an extended lifetime so they remain valid even after a new refreshed token is provided. The metric `serviceaccount_stale_tokens_total` can be used to monitor for workloads that are depending on the extended lifetime and are continuing to use tokens even after a refreshed token is provided to the container. If that metric indicates no existing workloads are depending...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "rbd": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.RBDPersistentVolumeSource"
                  }
                ],
                "description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.20.md

    ### Other (Cleanup or Flake)
    
    - Kube-apiserver: sets an upper-bound on the lifetime of idle keep-alive connections and time to read the headers of incoming requests ([#103958](https://github.com/kubernetes/kubernetes/pull/103958), [@liggitt](https://github.com/liggitt)) [SIG API Machinery and Node]
    
    ## Dependencies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    		case <-cs.reqCancel:
    			cs.abortStream(http2errRequestCanceled)
    			return nil, cancelRequest(cs, http2errRequestCanceled)
    		}
    	}
    }
    
    // doRequest runs for the duration of the request lifetime.
    //
    // It sends the request and performs post-request cleanup (closing Request.Body, etc.).
    func (cs *http2clientStream) doRequest(req *Request, streamf func(*http2clientStream)) {
    	cs.cc.t.markNewGoroutine()
    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