Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,261 for releasem (0.15 sec)

  1. src/go/version/version.go

    // Invalid versions, including the empty string, compare less than
    // valid versions and equal to each other.
    // The language version "go1.21" compares less than the
    // release candidate and eventual releases "go1.21rc1" and "go1.21.0".
    func Compare(x, y string) int {
    	return gover.Compare(stripGo(x), stripGo(y))
    }
    
    // IsValid reports whether the version x is valid.
    func IsValid(x string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:56:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RepoScriptBlockUtil.groovy

            LIGHTBEND_MAVEN("https://repo.lightbend.com/lightbend/maven-releases", System.getProperty('org.gradle.integtest.mirrors.lightbendmaven'), "maven"),
            LIGHTBEND_IVY("https://repo.lightbend.com/lightbend/ivy-releases", System.getProperty('org.gradle.integtest.mirrors.lightbendivy'), "ivy"),
            SPRING_RELEASES('https://repo.spring.io/release', System.getProperty('org.gradle.integtest.mirrors.springreleases'), 'maven'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    The Tooling API version is guaranteed to support running builds with all Gradle versions for the last five major releases.
    For example, the Tooling API 8.0 release is compatible with Gradle versions >= 3.0.
    Besides, the Tooling API is guaranteed to be compatible with future Gradle releases for the current and the next major.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/config/common.go

    		"kubeadm.k8s.io/v1beta1":  "v1.15",
    		"kubeadm.k8s.io/v1beta2":  "v1.22",
    	}
    
    	// v1.28: v1beta4 is released as experimental
    	experimentalAPIVersions := map[string]string{
    		// TODO: https://github.com/kubernetes/kubeadm/issues/2890
    		// remove this from experimental once v1beta4 is released
    		"kubeadm.k8s.io/v1beta4": "v1.28",
    	}
    
    	// Deprecated API versions are supported by us, but can only be used for migration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. helm/minio/README.md

    You can use Helm to update MinIO version in a live release. Assuming your release is named as `my-release`, get the values using the command:
    
    ```bash
    helm get values my-release > old_values.yaml
    ```
    
    Then change the field `image.tag` in `old_values.yaml` file with MinIO image tag you want to use. Now update the chart using
    
    ```bash
    helm upgrade -f old_values.yaml my-release minio/minio
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

            1 * client1.getKeepAliveMode() >> KeepAliveMode.SESSION
            1 * client2.getKeepAliveMode() >> KeepAliveMode.DAEMON
            1 * client1.stop()
            0 * client2.stop()
        }
    
        def "clients can be released for further use"() {
            def client = Mock(WorkerDaemonClient) {
                isCompatibleWith(_) >> true
                getLogLevel() >> LogLevel.DEBUG
            }
            starter.startDaemon(options) >> client
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

      </modules>
      <repositories>
        <repository>
          <releases>
            <enabled>false</enabled>
          </releases>
          <id>snapshots</id>
          <name>Maven Central Development Repository</name>
          <url>http://snapshots.maven.codehaus.org/maven2</url>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <releases>
            <enabled>false</enabled>
          </releases>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. pkg/registry/core/service/portallocator/allocator.go

    	})
    }
    
    // Release releases the port back to the pool. Releasing an
    // unallocated port or a port out of the range is a no-op and
    // returns no error.
    func (r *PortAllocator) Release(port int) error {
    	ok, offset := r.contains(port)
    	if !ok {
    		klog.Warningf("port is not in the range when release it. port: %v", port)
    		return nil
    	}
    
    	err := r.alloc.Release(offset)
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. docs/iam/policies/pbac-tests.sh

    	set -x
    fi
    
    pkill minio
    pkill kes
    rm -rf /tmp/xl
    
    if [ ! -f ./mc ]; then
    	wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    		chmod +x mc
    fi
    
    if [ ! -f ./kes ]; then
    	wget --quiet -O kes https://github.com/minio/kes/releases/latest/download/kes-linux-amd64 &&
    		chmod +x kes
    fi
    
    if ! openssl version &>/dev/null; then
    	apt install openssl || sudo apt install opensssl
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_4x.md

     [jetty_8_252]: https://webtide.com/jetty-alpn-java-8u252/
     [kotlin_1_3_71]: https://github.com/JetBrains/kotlin/releases/tag/v1.3.71
     [kotlin_1_4_10]: https://github.com/JetBrains/kotlin/releases/tag/v1.4.10
     [kotlin_1_6_20]: https://github.com/JetBrains/kotlin/releases/tag/v1.6.20
     [kotlin_1_8_21]: https://github.com/JetBrains/kotlin/releases/tag/v1.8.21
     [legacy_interceptor]: https://gist.github.com/swankjesse/80135f4e03629527e723ab3bcf64be0b
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top