Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,261 for releasem (0.23 sec)

  1. src/internal/poll/sock_cloexec_solaris.go

    // setting SetNonblock and CloseOnExec, but don't necessarily have accept4.
    // The accept4(3c) function was added to Oracle Solaris in the Solaris 11.4.0
    // release. Thus, on releases prior to 11.4, we fall back to the combination
    // of accept(3c) and fcntl(2).
    
    package poll
    
    import (
    	"internal/syscall/unix"
    	"syscall"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/toolchain/switch.go

    	// Consider each release in the list, from newest to oldest,
    	// considering only entries >= need and then only entries
    	// that are the latest in their language family
    	// (the latest 1.40, the latest 1.39, and so on).
    	// We prefer the latest patch release before the most recent release family,
    	// so if the latest release is 1.40.1 we'll take the latest 1.39.X.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. README.md

    <img src="https://github.com/kubernetes/kubernetes/raw/master/logo/logo.png" width="100">
    
    ----
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/util/internal/DistributionLocatorIntegrationTest.groovy

            urlExist(locator.getDistributionFor(GradleVersion.version("1.12")))
        }
    
        /**
         * If this test fails, it means that the snapshot in `released-versions.json` is no longer available.
         * You need to update that entry with a recent snapshot by hand.
         */
        def "locates snapshot versions"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 06:57:00 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistry.java

                    Services services = entry.getValue();
                    if (services.count != 0) {
                        throw new IllegalStateException("Services for Gradle user home directory '" + entry.getKey() + "' have not been released.");
                    }
                    stoppable.add(services.registry);
                }
                servicesForHomeDir.clear();
            } finally {
                lock.unlock();
            }
            stoppable.stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

    fun Project.currentGitCommitViaFileSystemQuery(): Provider<String> = getBuildEnvironmentExtension()?.gitCommitId ?: objects.property(String::class.java)
    
    
    // pre-test/master/queue/alice/feature -> master
    // pre-test/release/current/bob/bugfix -> release
    // gh-readonly-queue/master/pr-1234-5678abcdef -> master
    fun toMergeQueueBaseBranch(actualBranch: String): String = when {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. build/root/Makefile

    #
    # Example:
    #   make release-skip-tests
    #   make quick-release
    endef
    .PHONY: release-skip-tests quick-release
    ifeq ($(PRINT_HELP),y)
    release-skip-tests quick-release:
    	echo "$$RELEASE_SKIP_TESTS_HELP_INFO"
    else
    release-skip-tests quick-release: KUBE_RELEASE_RUN_TESTS = n
    release-skip-tests quick-release: KUBE_FASTBUILD = true
    release-skip-tests quick-release:
    	build/release.sh
    endif
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    - Kotlin has been updated to https://github.com/JetBrains/kotlin/releases/tag/v1.3.72[Kotlin 1.3.72].
    - Groovy has been updated to https://groovy-lang.org/changelogs/changelog-2.5.11.html[Groovy 2.5.11].
    
    ==== Updates to default tool integration versions
    
    - PMD has been updated to https://github.com/pmd/pmd/releases/tag/pmd_releases%2F6.23.0[PMD 6.23.0].
    
    === Deprecations
    
    [[abstract_task_deprecated]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/versions/versions.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".
    // Custom toolchain suffixes are ignored during comparison:
    // "go1.21.0" and "go1.21.0-bigcorp" are equal.
    func Compare(x, y string) int { return compare(stripGo(x), stripGo(y)) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

     *     <li>the message is sent back to the Lock Requester to confirm that the lock release is in progress</li>
     *     <li>when the contended action finishes, i.e. the lock has been released, all Lock Requesters will get another message
     *         to trigger an immediate retry</li>
     * </ul>
     * <p>
     * If this is the Lock Requester:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top