Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for rend (0.14 sec)

  1. src/net/http/h2_bundle.go

    }
    
    // CloseWithError causes the next Read (waking up a current blocked
    // Read if needed) to return the provided err after all data has been
    // read.
    //
    // The error must be non-nil.
    func (p *http2pipe) CloseWithError(err error) { p.closeWithError(&p.err, err, nil) }
    
    // BreakWithError causes the next Read (waking up a current blocked
    // Read if needed) to return the provided err immediately, without
    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. src/cmd/compile/internal/ssagen/ssa.go

    			bElse = bEnd
    		}
    		s.condBranch(n.Cond, bThen, bElse, likely)
    
    		if len(n.Body) != 0 {
    			s.startBlock(bThen)
    			s.stmtList(n.Body)
    			if b := s.endBlock(); b != nil {
    				b.AddEdgeTo(bEnd)
    			}
    		}
    		if len(n.Else) != 0 {
    			s.startBlock(bElse)
    			s.stmtList(n.Else)
    			if b := s.endBlock(); b != nil {
    				b.AddEdgeTo(bEnd)
    			}
    		}
    		s.startBlock(bEnd)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // cachingMode is the Host Caching mode: None, Read Only, Read Write.
      // +optional
      optional string cachingMode = 3;
    
      // fsType is Filesystem type to mount.
      // Must be a filesystem type supported by the host operating system.
      // Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
      // +optional
      optional string fsType = 4;
    
      // readOnly Defaults to false (read/write). ReadOnly here will force
    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. staging/src/k8s.io/api/core/v1/types.go

    const (
    	// can be mounted in read/write mode to exactly 1 host
    	ReadWriteOnce PersistentVolumeAccessMode = "ReadWriteOnce"
    	// can be mounted in read-only mode to many hosts
    	ReadOnlyMany PersistentVolumeAccessMode = "ReadOnlyMany"
    	// can be mounted in read/write mode to many hosts
    	ReadWriteMany PersistentVolumeAccessMode = "ReadWriteMany"
    	// can be mounted in read/write mode to exactly 1 pod
    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. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    	if err := apiextensions.AddToScheme(scheme); err != nil {
    		t.Fatal(err)
    	}
    
    	seed := rand.Int63()
    	t.Logf("seed: %d", seed)
    	fuzzerFuncs := fuzzer.MergeFuzzerFuncs(apiextensionsfuzzer.Funcs)
    	f := fuzzer.FuzzerFor(fuzzerFuncs, rand.NewSource(seed), codecs)
    
    	for i := 0; i < 10000; i++ {
    		// fuzz internal types
    		schema := &apiextensions.JSONSchemaProps{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

        - [Container Images](#container-images-11)
      - [Changelog since v1.27.0](#changelog-since-v1270)
      - [Urgent Upgrade Notes](#urgent-upgrade-notes)
        - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade)
      - [Changes by Kind](#changes-by-kind-11)
        - [Deprecation](#deprecation)
        - [API Change](#api-change-3)
        - [Feature](#feature-9)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    * [stable] [cri-o](https://github.com/kubernetes-incubator/cri-o): CRI implementation for OCI-based runtimes [[@mrunalp](https://github.com/mrunalp)]
    
      * Passed all the Kubernetes 1.7 end-to-end conformance test suites.
      * Verification against Kubernetes 1.8 is planned soon after the release.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - `readOnly` volumes now support recursive read-only mounts for kernel versions >= 5.12."
       ([#123180](https://github.com/kubernetes/kubernetes/pull/123180), [@AkihiroSuda](https://github.com/AkihiroSuda))
    - cri-api: Implemented KEP-3857: Recursive Read-only (RRO) mounts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top