Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for corerest (0.28 sec)

  1. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // Represents a source location of a volume to mount, managed by an external CSI driver
    message CSIVolumeSource {
      // driver is the name of the CSI driver that handles this volume.
      // Consult with your admin for the correct name as registered in the cluster.
      optional string driver = 1;
    
      // readOnly specifies a read-only configuration for the volume.
      // Defaults to false (read/write).
      // +optional
      optional bool readOnly = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.8.md

    * Return Audit-Id http response header for trouble shooting ([#49377](https://github.com/kubernetes/kubernetes/pull/49377), [@CaoShuFeng](https://github.com/CaoShuFeng))
    * Status objects for 404 API errors will have the correct APIVersion ([#49868](https://github.com/kubernetes/kubernetes/pull/49868), [@shiywang](https://github.com/shiywang))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    	// CONTINUATION frames. The underlying slice is owned by the
    	// Framer and must not be retained after the next call to
    	// ReadFrame.
    	//
    	// Fields are guaranteed to be in the correct http2 order and
    	// not have unknown pseudo header fields or invalid header
    	// field names or values. Required pseudo header fields may be
    	// missing, however. Use the MetaHeadersFrame.Pseudo accessor
    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. staging/src/k8s.io/api/core/v1/types.go

    // Represents a source location of a volume to mount, managed by an external CSI driver
    type CSIVolumeSource struct {
    	// driver is the name of the CSI driver that handles this volume.
    	// Consult with your admin for the correct name as registered in the cluster.
    	Driver string `json:"driver" protobuf:"bytes,1,opt,name=driver"`
    
    	// readOnly specifies a read-only configuration for the volume.
    	// Defaults to false (read/write).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.25.md

    - Kube-apiserver: DELETECOLLECTION API requests are now recorded in metrics with the correct verb. ([#113133](https://github.com/kubernetes/kubernetes/pull/113133), [@sxllwx](https://github.com/sxllwx)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Fixed incorrect watch events when a watch is initialized simultanously with a reinitializing watchcache. (...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	if azure.Kind != nil && !supportedDiskKinds.Has(*azure.Kind) {
    		allErrs = append(allErrs, field.NotSupported(fldPath.Child("kind"), *azure.Kind, sets.List(supportedDiskKinds)))
    	}
    
    	// validate that DiskUri is the correct format
    	if azure.Kind != nil && *azure.Kind == core.AzureManagedDisk && strings.Index(azure.DataDiskURI, "/subscriptions/") != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. doc/go_spec.html

    a <a href="#Run_time_panics">run-time panic</a> occurs.
    In other words, even though the dynamic type of <code>x</code>
    is known only at run time, the type of <code>x.(T)</code> is
    known to be <code>T</code> in a correct program.
    </p>
    
    <pre>
    var x interface{} = 7          // x has dynamic type int and value 7
    i := x.(int)                   // i has type int and value 7
    
    type I interface { m() }
    
    func f(y I) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    `),console.time("JIT...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top