Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 87 for RELEASE (0.12 sec)

  1. cmd/erasure-server-pool.go

    	if err != nil && err != io.EOF {
    		if !isErrBucketNotFound(err) {
    			storageLogOnceIf(ctx, err, "erasure-list-objects-path-"+bucket)
    		}
    		return loi, toObjectErr(err, bucket)
    	}
    	defer merged.truncate(0) // Release when returning
    
    	if contextCanceled(ctx) {
    		return ListObjectVersionsInfo{}, ctx.Err()
    	}
    
    	if versionMarker == "" {
    		o := listPathOptions{Marker: marker}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

      # shellcheck disable=SC2027 disable=SC2046
      echo \
        "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
        "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
        tee /etc/apt/sources.list.d/docker.list > /dev/null
    
      apt-get update
      apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin
      groupadd docker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	sh := b.Shell(a)
    
    	// Wait for previous test to get started and print its first json line.
    	select {
    	case <-r.prev:
    		// If should fail fast then release next test and exit.
    		if testShouldFailFast.Load() {
    			close(r.next)
    			return nil
    		}
    	case <-base.Interrupted:
    		// We can't wait for the previous test action to complete: we don't start
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     * ```
     *
     * ## Shutdown Isn't Necessary
     *
     * The threads and connections that are held will be released automatically if they remain idle. But
     * if you are writing a application that needs to aggressively release unused resources you may do
     * so.
     *
     * Shutdown the dispatcher's executor service with [shutdown()][ExecutorService.shutdown]. This will
     * also cause future calls to the client to be rejected.
     *
     * ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    }
    
    // Check z/OS version
    func zosLeVersion() (version, release uint32) {
    	p1 := (*(*uintptr)(unsafe.Pointer(uintptr(1208)))) >> 32
    	p1 = *(*uintptr)(unsafe.Pointer(uintptr(p1 + 88)))
    	p1 = *(*uintptr)(unsafe.Pointer(uintptr(p1 + 8)))
    	p1 = *(*uintptr)(unsafe.Pointer(uintptr(p1 + 984)))
    	vrm := *(*uint32)(unsafe.Pointer(p1 + 80))
    	version = (vrm & 0x00ff0000) >> 16
    	release = (vrm & 0x0000ff00) >> 8
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    	case ASCW, ASCD:
    		// Set release access ordering
    		ins.funct7 = 1
    		ins.rd, ins.rs1, ins.rs2 = uint32(p.RegTo2), uint32(p.To.Reg), uint32(p.From.Reg)
    
    	case AAMOSWAPW, AAMOSWAPD, AAMOADDW, AAMOADDD, AAMOANDW, AAMOANDD, AAMOORW, AAMOORD,
    		AAMOXORW, AAMOXORD, AAMOMINW, AAMOMIND, AAMOMINUW, AAMOMINUD, AAMOMAXW, AAMOMAXD, AAMOMAXUW, AAMOMAXUD:
    		// Set aqrl to use acquire & release access ordering
    		ins.funct7 = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller.go

    				}
    			}
    		}
    
    		if claim == nil {
    			// If we get into this block, the claim must have been deleted;
    			// NOTE: reclaimVolume may either release the PV back into the pool or
    			// recycle it or do nothing (retain)
    
    			// Do not overwrite previous Failed state - let the user see that
    			// something went wrong, while we still re-try to reclaim the
    			// volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

            }
          }
        }
    kind: ConfigMap
    metadata:
      labels:
        install.operator.istio.io/owning-resource: unknown
        istio.io/rev: default
        operator.istio.io/component: Pilot
        release: istio
      name: istio-sidecar-injector
      namespace: istio-system
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// mainly because c.watchCache.processEvent method won't be able to make progress
    	//
    	// moreover even though the c.waitUntilWatchCacheFreshAndForceAllEvents acquires a lock
    	// it is safe to release the lock after the method finishes because we don't require
    	// any atomicity between the call to the method and further calls that actually get the events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_test.go

    		{"go1.20", "go1.19", "go1.20"}, // file downgrade not permitted
    		{"go1.21", "go1.19", "go1.19"}, // file downgrade permitted (module version is >= go1.21)
    
    		// versions containing release numbers
    		// (file versions containing release numbers are considered invalid)
    		{"go1.19.0", "", "go1.19.0"},         // no file version specified
    		{"go1.20", "go1.20.1", "go1.20"},     // file upgrade ignored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top