Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 693 for _top (0.09 sec)

  1. platforms/documentation/docs/src/main/resources/header.html

                            <a target="_top" class="site-header__navigation-link" href="https://dpeuniversity.gradle.com/" itemprop="url">DPE University</a>
                        </li>
                        <li class="site-header__navigation-item" itemprop="name">
                            <a target="_top" class="site-header__navigation-link" href="https://gradle.org/training/" itemprop="url">Events</a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         * However, it is guaranteed to be the same version of Gradle. For more information on the Gradle Daemon, please consult the
         * <a href="https://docs.gradle.org/current/userguide/gradle_daemon.html" target="_top">User Manual</a>.
         *
         * @return The home directory. May return null.
         */
        @Nullable
        File getGradleHomeDir();
    
        /**
         * Returns the parent build of this build, if any.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

     * for your test by adding the `--watch-fs` command line argument via {@link #withArguments(String...)}.
     * <p>
     * Please see the Gradle <a href="https://docs.gradle.org/current/userguide/test_kit.html" target="_top">TestKit</a> User Manual chapter for more information.
     *
     * @since 2.6
     */
    public abstract class GradleRunner {
    
        /**
         * Creates a new Gradle runner.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

         *
         * @return The dependency.
         */
        Dependency gradleApi();
    
        /**
         * Creates a dependency on the <a href="https://docs.gradle.org/current/userguide/test_kit.html" target="_top">Gradle test-kit</a> API.
         *
         * @return The dependency.
         * @since 2.6
         */
        Dependency gradleTestKit();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

     * Read more about declaring artifacts in the configuration in docs for {@link org.gradle.api.artifacts.dsl.ArtifactHandler}
     *
     * Please see the <a href="https://docs.gradle.org/current/userguide/declaring_dependencies.html" target="_top">Declaring Dependencies</a> User Manual chapter for more information.
     */
    @HasInternalProtocol
    public interface Configuration extends FileCollection, HasConfigurableAttributes<Configuration>, Named {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. src/iter/pull_test.go

    func TestPullImmediateStop(t *testing.T) {
    	next, stop := Pull(panicSeq())
    	stop()
    	// Make sure we don't panic if we try to call next or stop.
    	if _, ok := next(); ok {
    		t.Fatal("next returned true after iterator was stopped")
    	}
    }
    
    func TestPull2ImmediateStop(t *testing.T) {
    	next, stop := Pull2(panicSeq2())
    	stop()
    	// Make sure we don't panic if we try to call next or stop.
    	if _, _, ok := next(); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/TcpConnectorTest.groovy

            thread.blockUntil.connected
            operation.stop {
                acceptor.stop()
            }
    
            then:
            operation.stop.end > instant.actionFinished
    
            cleanup:
            acceptor?.stop()
            connection?.stop()
        }
    
        def "can receive message from peer after peer has closed connection"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

            manager.stop()
    
            then:
            noExceptionThrown()
            1 * client1.isFailed() >> true
            0 * client1.stop()
            1 * client2.stop()
        }
    
        def "can stop session-scoped clients"() {
            listenerManager = new DefaultListenerManager(Scope.BuildSession)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/leaderelection_test.go

    		enabled:        true,
    	}
    	l.AddRunFunction(func(stop <-chan struct{}) {
    		<-stop
    	})
    	for _, fn := range fns {
    		l.AddRunFunction(fn)
    	}
    	stop := make(chan struct{})
    	go l.Run(stop)
    
    	retry.UntilOrFail(t, func() bool {
    		return l.isLeader() == expectLeader
    	}, retry.Converge(5), retry.Delay(time.Millisecond*100), retry.Timeout(time.Second*10))
    	return l, stop
    }
    
    type fakeDefaultWatcher struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/concurrent/src/test/groovy/org/gradle/internal/concurrent/DefaultExecutorFactoryTest.groovy

            operation.stop {
                executor.stop(timeoutMs, TimeUnit.MILLISECONDS)
            }
    
            then:
            IllegalStateException e = thrown()
            e.message == 'Timeout waiting for concurrent jobs to complete.'
    
            and:
            operation.stop.duration in approx(timeoutMs)
        }
    
        def stopRethrowsFirstExecutionException() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top