Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,434 for onDone (0.08 sec)

  1. src/cmd/go/internal/mvs/mvs_test.go

    A: G1 H1
    G1: H1
    H1: G1
    req A:   G1
    req A G: G1
    req A H: H1
    
    name: req3
    M: A1 B1
    A1: X1
    B1: X2
    X1: I1
    X2:
    req M: A1 B1
    
    name: reqnone
    M: Anone B1 D1 E1
    B1: Cnone D1
    E1: Fnone
    build M: M B1 D1 E1
    req M:     B1    E1
    
    name: reqdup
    M: A1 B1
    A1: B1
    B1:
    req M A A: A1
    
    name: reqcross
    M: A1 B1 C1
    A1: B1 C1
    B1: C1
    C1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/resources/valid-precondition-combinations.csv

    IntegTestPreconditions$NotParallelExecutor,UnitTestPreconditions$StableGroovy
    UnitTestPreconditions$NotWindowsJavaBefore9
    UnitTestPreconditions$NotWindowsJavaBefore11
    UnitTestPreconditions$Online
    UnitTestPreconditions$Online,TestKitPreconditions$LowestMajorGradleIsAvailable
    UnitTestPreconditions$Online,UnitTestPreconditions$Jdk11OrEarlier,IntegTestPreconditions$NotEmbeddedExecutor
    UnitTestPreconditions$SmartTerminalAvailable
    UnitTestPreconditions$StableGroovy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:38 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. internal/rest/client.go

    		// make connection pre-emptively.
    		go clnt.HealthCheckFn()
    	}
    	return clnt
    }
    
    // IsOnline returns whether the client is likely to be online.
    func (c *Client) IsOnline() bool {
    	return atomic.LoadInt32(&c.connected) == online
    }
    
    // LastConn returns when the disk was (re-)connected
    func (c *Client) LastConn() time.Time {
    	return time.Unix(0, atomic.LoadInt64(&c.lastConn))
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. cmd/prepare-storage.go

    	// Return error when quorum unformatted disks - indicating we are
    	// waiting for first server to be online.
    	unformattedDisks := quorumUnformattedDisks(sErrs)
    	if unformattedDisks && !firstDisk {
    		return nil, errNotFirstDisk
    	}
    
    	// Return error when quorum unformatted disks but waiting for rest
    	// of the servers to be online.
    	if unformattedDisks && firstDisk {
    		return nil, errFirstDiskWait
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ExecutionError.java

       *     can <i>usually</i> still preserve behavior by passing an explicit {@code null} cause. Note,
       *     however, that passing an explicit {@code null} cause prevents anyone from calling {@link
       *     #initCause} later, so it is not quite equivalent to using a constructor that omits the
       *     cause.
       */
      @Deprecated
      protected ExecutionError() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

       *     cause. At the moment, you can <i>usually</i> still preserve behavior by passing an explicit
       *     {@code null} cause. Note, however, that passing an explicit {@code null} cause prevents
       *     anyone from calling {@link #initCause} later, so it is not quite equivalent to using a
       *     constructor that omits the cause.
       */
      @Deprecated
      protected UncheckedExecutionException() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/InetAddressesTest.groovy

        def addresses = new InetAddresses()
    
        def "always contains at least one loopback address"() {
            expect:
            !addresses.loopback.empty
        }
    
        @Requires(UnitTestPreconditions.Online)
        def "always contains at least one remote address"() {
            expect:
            !addresses.remote.empty
        }
    
        def "No remote addresses are loopback addresses"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

         * @return uses the Maven project and its child modules
         */
        boolean aggregator() default false;
    
        /**
         * does this Mojo need to be online to be executed?
         * @return need to be online
         */
        boolean onlineRequired() default false;
    
        /**
         * TODO: v4: add a SPI for the configurator
         * configurator bean name.
         * @return the configurator bean name
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/GradlePluginPortalDependencyResolveIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractDependencyResolutionTest
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires(UnitTestPreconditions.Online)
    class GradlePluginPortalDependencyResolveIntegrationTest extends AbstractDependencyResolutionTest {
    
        def gradlePluginPortalRepository = """
            repositories {
                gradlePluginPortal()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. testing/soak/src/integTest/groovy/org/gradle/connectivity/MavenGoogleDependencyResolveIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractDependencyResolutionTest
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires(UnitTestPreconditions.Online)
    class MavenGoogleDependencyResolveIntegrationTest extends AbstractDependencyResolutionTest {
    
        def setup() {
            buildFile << """
                repositories {
                    google()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top