Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 143 for RELEASE (0.17 sec)

  1. manifests/addons/dashboards/README.md

    # Grafana Dashboards
    
    This folder contains Istio's official Grafana dashboards.
    These get publish to [Grafana](https://grafana.com/orgs/istio/dashboards) during release, and are bundled into our
    [Grafana sample](../../../samples/addons/grafana.yaml).
    
    ## Jsonnet
    
    Newer dashboards are generated with [Jsonnet](https://jsonnet.org/) with the [Grafonnet](https://grafana.github.io/grafonnet/index.html).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

    - Removed legacy cloud provider integration code (undoing a previous reverted commit) ([#124886](https://github.com/kubernetes/kubernetes/pull/124886), [@carlory](https://github.com/carlory)) [SIG Cloud Provider and Release]
    
    ### API Change
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package relnote supports working with release notes.
    //
    // Its main feature is the ability to merge Markdown fragments into a single
    // document. (See [Merge].)
    //
    // This package has minimal imports, so that it can be vendored into the
    // main go repo.
    package relnote
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

        }
    
        def "the lock holder starts the release request only once and discards additional requests in the meantime"() {
            given:
            def requestReceived = false
            def terminate = false
            setupLockOwner {
                requestReceived = true
                while(!terminate) { Thread.sleep(100) } //block the release action thread
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/CleanAcceptedApiChanges.groovy

    import org.gradle.api.tasks.TaskAction
    import org.gradle.work.DisableCachingByDefault
    
    /**
     * A task used for cleaning up all accepted API changes. The functionality is called whenever the release process initiates "branching".
     */
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class CleanAcceptedApiChanges extends DefaultTask {
    
        @PathSensitive(PathSensitivity.ABSOLUTE)
        @InputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:27:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. docs/bucket/replication/test_del_marker_proxying.sh

    minio server --address ":9002" --console-address ":11000" /tmp/siteb/{1...4}/disk{1...4} /tmp/siteb/{5...8}/disk{1...4} >/tmp/siteb_1.log 2>&1 &
    echo "done"
    
    if [ ! -f ./mc ]; then
    	wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    		chmod +x mc
    fi
    
    export MC_HOST_sitea=http://minio:minio123@127.0.0.1:9001
    export MC_HOST_siteb=http://minio:minio123@127.0.0.1:9002
    
    ./mc ready sitea
    ./mc ready siteb
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

                    if (jarFile.isMultiRelease() && !isTransformed(jarFile.getJarFile())) {
                        throw new GradleException(String.format(
                            "Cannot load multi-release JAR '%s' because it cannot be fully instrumented for Java %d by this version of Gradle. Please use a supported Java version (<=%d).",
                            originalPath.getAbsolutePath(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    Support is achieved using <<toolchains#toolchains,toolchains>> and applies to all tasks supporting toolchains.
    
    See the table below for the Java version supported by a specific Gradle release:
    
    .Java Compatibility
    |===
    |Java version | Support for toolchains | Support for running Gradle
    
    | 8 | N/A | 2.0
    | 9 | N/A | 4.3
    | 10| N/A | 4.7
    | 11| N/A | 5.0
    | 12| N/A | 5.4
    | 13| N/A | 6.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonFactory.java

                    try {
                        return executeWrappedInBuildOperation(spec, parentBuildOperation, client::execute);
                    } finally {
                        clientsManager.release(client);
                    }
                }
    
                private WorkerDaemonClient reserveClient() {
                    DaemonForkOptions forkOptions = ((ForkedWorkerRequirement) workerRequirement).getForkOptions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 13:20:59 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/build.gradle.kts

        jmhImplementation(platform(project(":distributions-dependencies")))
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    tasks.withType<JavaCompile>().configureEach {
        options.release = null
        sourceCompatibility = "8"
        targetCompatibility = "8"
    }
    
    integTest.usesJavadocCodeSnippets = true
    
    packageCycles {
        excludePatterns.add("org/gradle/model/internal/core/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top