Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,992 for ONCE (0.04 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStopClient.java

     * <li>The client sends a {@link org.gradle.launcher.daemon.protocol.Finished} message once it has received the {@link org.gradle.launcher.daemon.protocol.Result} message.
     *     It may no longer send any messages.</li>
     * <li>The client closes the connection.</li>
     * <li>The daemon closes the connection once it has received the {@link org.gradle.launcher.daemon.protocol.Finished} message.</li>
     * </ul>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. src/go/types/named_test.go

    				// Access underlying once, to trigger any lazy calculation.
    				_ = test.typ.Underlying()
    				b.ResetTimer()
    				for i := 0; i < b.N; i++ {
    					_ = test.typ.Underlying()
    				}
    			})
    		}
    	})
    
    	b.Run("NewMethodSet", func(b *testing.B) {
    		for _, test := range tests {
    			b.Run(test.name, func(b *testing.B) {
    				// Access underlying once, to trigger any lazy calculation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 16:29:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. docs/site-replication/README.md

    - **Removing a site** is not allowed from a set of replicated sites once configured.
    - All sites must be using the **same** external IDP(s) if any.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 21:30:28 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. doc/go_mem.html

    <p class="rule">
    The completion of a single call of <code>f()</code> from <code>once.Do(f)</code>
    is synchronized before the return of any call of <code>once.Do(f)</code>.
    </p>
    
    <p>
    In this program:
    </p>
    
    <pre>
    var a string
    var once sync.Once
    
    func setup() {
    	a = "hello, world"
    }
    
    func doprint() {
    	once.Do(setup)
    	print(a)
    }
    
    func twoprint() {
    	go doprint()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/FakeTicker.java

       */
      @GwtIncompatible
      @J2ktIncompatible
      @CanIgnoreReturnValue
      @SuppressWarnings("Java7ApiChecker") // guava-android can rely on library desugaring now.
      @IgnoreJRERequirement // TODO: b/288085449 - Remove this once we use library-desugaring scents.
      @Beta // TODO: b/288085449 - Remove @Beta after we're sure that Java 8 APIs are safe for Android
      public FakeTicker advance(Duration duration) {
        return advance(duration.toNanos());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/SingleFirePendingChangesListenerTest.groovy

    import spock.lang.Specification
    
    class SingleFirePendingChangesListenerTest extends Specification {
        def delegate = Mock(PendingChangesListener)
    
        def "propagates changes only once"() {
            def singleFirePendingChangesListener = new SingleFirePendingChangesListener(delegate)
    
            when:
            singleFirePendingChangesListener.onPendingChanges()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/model/IdeExtendedRepoFileDependency.java

     */
    
    package org.gradle.plugins.ide.internal.resolver.model;
    
    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    
    /**
     * TODO only here because Kotlin DSL uses this. Please remove once that is fixed.
     */
    public class IdeExtendedRepoFileDependency {
    
        private ModuleVersionIdentifier id;
    
        public ModuleVersionIdentifier getId() {
            return id;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. src/net/ipsock.go

    // See inet6(4) for details.
    
    type ipStackCapabilities struct {
    	sync.Once             // guards following
    	ipv4Enabled           bool
    	ipv6Enabled           bool
    	ipv4MappedIPv6Enabled bool
    }
    
    var ipStackCaps ipStackCapabilities
    
    // supportsIPv4 reports whether the platform supports IPv4 networking
    // functionality.
    func supportsIPv4() bool {
    	ipStackCaps.Once.Do(ipStackCaps.probe)
    	return ipStackCaps.ipv4Enabled
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

     * <li>The client sends a {@link Finished} message once it has received the {@link Result} message.
     *     It may no longer send any messages.</li>
     * <li>The client closes the connection.</li>
     * <li>The daemon closes the connection once it has received the {@link Finished} message.</li>
     * </ul>
     *
     * <p>To stop a daemon:</p>
     *
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/config/BuildScanConfigProvider.java

     *
     * @since 4.0
     */
    public interface BuildScanConfigProvider {
    
        /**
         * Invoked by the scan plugin to “collect” the configuration.
         *
         * Will only be called once per build.
         */
        BuildScanConfig collect(BuildScanPluginMetadata pluginMetadata);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top