Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 665 for releasem (0.11 sec)

  1. platforms/core-runtime/launcher/src/main/resources/release-features.txt

    Bo Zhang <******@****.***> 1718090200 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    	if success {
    		s.cur += n
    	}
    	s.mu.Unlock()
    	return success
    }
    
    // Release releases the semaphore with a weight of n.
    func (s *Weighted) Release(n int64) {
    	s.mu.Lock()
    	s.cur -= n
    	if s.cur < 0 {
    		s.mu.Unlock()
    		panic("semaphore: released more than held")
    	}
    	s.notifyWaiters()
    	s.mu.Unlock()
    }
    
    func (s *Weighted) notifyWaiters() {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistryTest.groovy

            then:
            def e = thrown(IllegalStateException)
            e.message == 'Gradle user home directory scoped services have already been released.'
        }
    
        def "close fails when services not released"() {
            def dir = new File("home-dir")
    
            given:
            homeDirServices.getServicesFor(dir)
    
            when:
            homeDirServices.close()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. doc/initial/1-intro.md

    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.N {#introduction}
    
    **Go 1.N is not yet released. These are work-in-progress release notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  5. doc/next/1-intro.md

    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.23 {#introduction}
    
    **Go 1.23 is not yet released. These are work-in-progress release notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

    "istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}" successfully installed!
    
    To learn more about the release, try:
      $ helm status {{ .Release.Name }} -n {{ .Release.Namespace }}
      $ helm get all {{ .Release.Name }} -n {{ .Release.Namespace }}
    
    Next steps:
    {{- if (eq .Values.profile "ambient") }}
      * Get started with ambient: https://istio.io/latest/docs/ops/ambient/getting-started/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonExpirationTest.groovy

            and:
            clientsManager.release(client1)
            clientsManager.release(client2)
    
            when:
            def released = expiration.attemptToRelease(requestedMemory)
    
            then:
            1 * client1.stop()
            0 * client2.stop()
    
            and:
            reserveIdleClient(defaultOptions) == client2
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part7_gradle_refs.adoc

    To find plugins:
    
    - Gradle <<plugin_reference#plugin_reference,Core Plugins>>
    - Gradle link:https://plugins.gradle.org/[Plugin Portal]
    
    To view all Gradle releases:
    
    - https://gradle.org/releases/[Gradle Releases]
    - http://gradle.org/docs/current/release-notes[Release Notes]
    
    For Gradle support:
    
    - link:https://discuss.gradle.org/[Gradle Forum]
    - link:https://gradle-community.slack.com/[Gradle Slack Channel]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/os/pidfd_linux.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.
    
    // Support for pidfd was added during the course of a few Linux releases:
    //  v5.1: pidfd_send_signal syscall;
    //  v5.2: CLONE_PIDFD flag for clone syscall;
    //  v5.3: pidfd_open syscall, clone3 syscall;
    //  v5.4: P_PIDFD idtype support for waitid syscall;
    //  v5.6: pidfd_getfd syscall.
    
    package os
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperUpgradeIntegrationTest.groovy

            failure.assertHasResolution("Use one of the following dynamic version specifications: 'latest', 'release-candidate', 'release-nightly', 'nightly'.")
    
            where:
            badVersion << ["bad-version", "next", "new", "5.x", "x.3", "x+1", "8.5.x", "8.5.latest", "later", "prerelease", "nightly-release", "latest-release", "rc", "current"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top