Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 143 for RELEASE (0.15 sec)

  1. platforms/documentation/docs/src/docs/release/notes-template.md

    <!--
    ### Example promoted
    -->
    
    ## Fixed issues
    
    <!--
    This section will be populated automatically
    -->
    
    ## Known issues
    
    Known issues are problems that were discovered post-release that are directly related to changes made in this release.
    
    <!--
    This section will be populated automatically
    -->
    
    ## External contributions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. Makefile

    	@sudo apt install ./pkger_2.2.9_linux_amd64.deb --yes
    	@mkdir -p minio-release/$(GOOS)-$(GOARCH)/archive
    	@cp -af ./minio minio-release/$(GOOS)-$(GOARCH)/minio
    	@cp -af ./minio minio-release/$(GOOS)-$(GOARCH)/minio.$(VERSION)
    	@minisign -qQSm minio-release/$(GOOS)-$(GOARCH)/minio.$(VERSION) -s "${CRED_DIR}/minisign.key" < "${CRED_DIR}/minisign-passphrase"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/os/exec_test.go

    		t.Fatalf("starting test process: %v", err)
    	}
    	if err := p.Release(); err != nil {
    		t.Fatalf("first Release: got err %v, want nil", err)
    	}
    
    	err = p.Release()
    
    	// We want EINVAL from a second Release call only on Windows.
    	var want error
    	if runtime.GOOS == "windows" {
    		want = syscall.EINVAL
    	}
    
    	if err != want {
    		t.Fatalf("second Release: got err %v, want %v", err, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/iter/iter.go

    	c := newcoro(func(c *coro) {
    		race.Acquire(unsafe.Pointer(&racer))
    		if done {
    			race.Release(unsafe.Pointer(&racer))
    			return
    		}
    		yield := func(v1 V) bool {
    			if done {
    				return false
    			}
    			if !yieldNext {
    				panic("iter.Pull: yield called again before next")
    			}
    			yieldNext = false
    			v, ok = v1, true
    			race.Release(unsafe.Pointer(&racer))
    			coroswitch(c)
    			race.Acquire(unsafe.Pointer(&racer))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

                    <p>
                    If change was made on the `release` branch but hasn't yet been merged to `master`, merge `release` to `master`:
                    <a class="btn btn-info" role="button" data-toggle="collapse" href="#merge-release-${changeId}" aria-expanded="false" aria-controls="collapseExample">Merge release to master</a>
                    <div class="collapse" id="merge-release-${changeId}">
                      <div class="well">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. manifests/charts/gateway/templates/_helpers.tpl

    {{- define "gateway.name" -}}
    {{- if eq .Release.Name "RELEASE-NAME" -}}
      {{- .Values.name | default "istio-ingressgateway" -}}
    {{- else -}}
      {{- .Values.name | default .Release.Name | default "istio-ingressgateway" -}}
    {{- end -}}
    {{- end }}
    
    {{/*
    Create chart name and version as used by the helm.sh/chart label.
    */}}
    {{- define "gateway.chart" -}}
    {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/serviceaccount.yaml

      {{- end }}
      {{- end }}
    metadata:
      name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Values.global.istioNamespace }}
      labels:
        app: istiod
        release: {{ .Release.Name }}
      {{- if .Values.pilot.serviceAccountAnnotations }}
      annotations:
    {{- toYaml .Values.pilot.serviceAccountAnnotations | indent 4 }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 01:52:23 UTC 2024
    - 542 bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/serviceaccount.yaml

      {{- end }}
      {{- end }}
    metadata:
      name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Values.global.istioNamespace }}
      labels:
        app: istiod
        release: {{ .Release.Name }}
      {{- if .Values.pilot.serviceAccountAnnotations }}
      annotations:
    {{- toYaml .Values.pilot.serviceAccountAnnotations | indent 4 }}
      {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 01:52:23 UTC 2024
    - 592 bytes
    - Viewed (0)
  9. src/os/pidfd_linux_test.go

    	}
    	if _, err := proc.Wait(); !errors.Is(err, syscall.ECHILD) {
    		t.Errorf("Wait: got %v, want %v", err, os.ErrProcessDone)
    	}
    	// Release never returns errors on Unix.
    	if err := proc.Release(); err != nil {
    		t.Fatalf("Release: got %v, want <nil>", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. ci/official/requirements_updater/requirements.in

    # Install tensorboard, and keras
    # Note that here we want the latest version that matches TF major.minor version
    # Note that we must use nightly here as these are used in nightly jobs
    # For release jobs, we will pin these on the release branch
    keras-nightly ~= 3.0.0.dev
    tb-nightly ~= 2.18.0.a
    
    # Test dependencies
    grpcio >= 1.24.3, < 2.0
    portpicker == 1.6.0
    scipy == 1.11.3
    requests >= 2.31.0
    packaging==23.2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 19:00:33 UTC 2024
    - 834 bytes
    - Viewed (0)
Back to top