Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,283 for RELEASE (0.12 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryBuildTypesIntegrationTest.groovy

            buildFile << """
    apply plugin: 'cpp'
    model {
        buildTypes {
            debug
            release
        }
        components {
            main(NativeExecutableSpec) {
                targetBuildTypes "release"
                binaries.all { binary ->
                    if (buildType == buildTypes.release) {
                        cppCompiler.define "FRENCH"
                    }
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *CSIDriver) APILifecycleIntroduced() (major, minor int) {
    	return 1, 18
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. manifests/charts/gateway/README.md

    The script below can handle this for you. Replace `RELEASE` and `NAMESPACE` with the name and namespace of the release:
    
    ```console
    KINDS=(service deployment)
    RELEASE=istio-ingressgateway
    NAMESPACE=istio-system
    for KIND in "${KINDS[@]}"; do
        kubectl --namespace $NAMESPACE --overwrite=true annotate $KIND $RELEASE meta.helm.sh/release-name=$RELEASE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. helm-releases/minio-4.1.0.tgz

    apiVersion: {{ template "minio.networkPolicy.apiVersion" . }} metadata: name: {{ template "minio.fullname" . }} namespace: {{ .Release.Namespace | quote }} labels: app: {{ template "minio.name" . }} chart: {{ template "minio.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} spec: podSelector: matchLabels: app: {{ template "minio.name" . }} release: {{ .Release.Name }} ingress: - ports: - port: {{ .Values.minioAPIPort }} - port: {{ .Values.minioConsolePort }} {{- if not .Values.n...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Oct 24 20:37:05 UTC 2022
    - 20K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/BaselineVersionResolver.groovy

            GradleDistribution best = null
            for (GradleDistribution release : releases.all) {
                if (release.version.version == requested) {
                    return release
                }
                if (!release.version.snapshot && release.version.baseVersion.version == requested && (best == null || best.version < release.version)) {
                    best = release
                }
            }
    
            best
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/versions/features.go

    const Future = ""
    
    // AtLeast reports whether the file version v comes after a Go release.
    //
    // Use this predicate to enable a behavior once a certain Go release
    // has happened (and stays enabled in the future).
    func AtLeast(v, release string) bool {
    	if v == Future {
    		return true // an unknown future version is always after y.
    	}
    	return Compare(Lang(v), Lang(release)) >= 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. helm-releases/minio-5.0.2.tgz

    apiVersion: {{ template "minio.networkPolicy.apiVersion" . }} metadata: name: {{ template "minio.fullname" . }} namespace: {{ .Release.Namespace | quote }} labels: app: {{ template "minio.name" . }} chart: {{ template "minio.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} spec: podSelector: matchLabels: app: {{ template "minio.name" . }} release: {{ .Release.Name }} ingress: - ports: - port: {{ .Values.minioAPIPort }} - port: {{ .Values.minioConsolePort }} {{- if not .Values.n...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Dec 18 07:57:10 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  8. src/os/exec.go

    	testlog.Open(name)
    	return startProcess(name, argv, attr)
    }
    
    // Release releases any resources associated with the [Process] p,
    // rendering it unusable in the future.
    // Release only needs to be called if [Process.Wait] is not.
    func (p *Process) Release() error {
    	// Note to future authors: the Release API is cursed.
    	//
    	// On Unix and Plan 9, Release sets p.Pid = -1. This is the only part of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. cluster/get-kube.sh

        echo "Bailing out." >&2
        exit 3
        ;;
    esac
    
    file=kubernetes.tar.gz
    release=${KUBERNETES_RELEASE:-"release/stable"}
    
    # Validate Kubernetes release version.
    # Translate a published version <bucket>/<version> (e.g. "release/stable") to version number.
    set_binary_version "${release}"
    if [[ -z "${KUBERNETES_SKIP_RELEASE_VALIDATION-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. 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)
Back to top