Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 948 for ONCE (0.03 sec)

  1. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ManagedExecutor.java

         */
        @Override
        void stop();
    
        /**
         * Stops accepting new jobs and blocks until all currently executing jobs have been completed. Once the given
         * timeout has been reached, forcefully stops remaining jobs and throws an exception.
         *
         * @throws IllegalStateException on timeout.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ArgumentPassingCrossVersionTest.groovy

            then:
            env2.java.jvmArguments.contains(JVM_ARG_1)
            env2.java.jvmArguments.contains(JVM_ARG_2)
        }
    
        def "Adds multiple JVM arguments at once"() {
            when:
            BuildEnvironment env1 = loadBuildEnvironment { builder -> builder.addJvmArguments(JVM_ARG_1, JVM_ARG_2) }
    
            then:
            env1.java.jvmArguments.contains(JVM_ARG_1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemAggregation.java

    
    import org.gradle.api.Incubating;
    
    import java.util.List;
    
    /**
     * Represents a list of aggregated problems. These are sent at the end of the build.
     * All Problems that occurred more than once during the build are aggregated and sent as a {@link ProblemAggregation}.
     * They won't be sent in between the build only the first one.
     *
     * @since 8.6
     */
    @Incubating
    public interface ProblemAggregation {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 07:24:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelModelQueryIntegrationTest.groovy

            and:
            fixture.assertStateStored {
                projectsConfigured(":buildSrc", ":")
                modelsCreated(SomeToolingModel, ":") // the model is built only once and reused
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CleanupFrequency.java

    import java.time.Duration;
    import java.time.Instant;
    
    /**
     * Represents when cache cleanup should be triggered.
     *
     * @since 8.0
     */
    public interface CleanupFrequency {
        /**
         * Trigger cleanup once every 24 hours.
         */
        CleanupFrequency DAILY = new CleanupFrequency() {
            @Override
            public boolean requiresCleanup(@Nullable Instant lastCleanupTime) {
                if (lastCleanupTime == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/ShowToolchainsIntegrationTest.groovy

    import org.apache.commons.lang.StringUtils
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class ShowToolchainsIntegrationTest extends AbstractIntegrationSpec {
    
        def "shows toolchains only once across all projects"() {
            when:
            createDirs("a", "b", "c")
            settingsFile << """
                    include 'a', 'b', 'c'
                """
            buildFile << ""
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. releasenotes/notes/48818.yaml

    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultBuildCacheKey.java

        @Override
        public byte[] toByteArray() {
            return hashCode.toByteArray();
        }
    
        @Deprecated
        @Override
        public String getDisplayName() {
            // TODO Switch to SimpleBuildCacheKey once this method is removed
            DeprecationLogger.deprecateMethod(BuildCacheKey.class, "getDisplayName()")
                .replaceWith("getHashCode()")
                .willBeRemovedInGradle9()
                .undocumented()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsIntegrationTest.groovy

                assert project(":one").is(projects.one.dependencyProject)
            """
            FeaturePreviewsFixture.enableTypeSafeProjectAccessors(file("project/settings.gradle"))
    
            //run once
            when:
            inDirectory 'project'
            run 'help'
            then:
            outputContains 'Project accessors enabled, but root project name not explicitly set for \'project\'.'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:11:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/informers_test.go

    		Spec: corev1.PodSpec{
    			NodeName: NodeName,
    		},
    		Status: corev1.PodStatus{
    			PodIP: "11.1.1.12",
    		},
    	}
    	ns := &corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{Name: "test"},
    		// TODO: once we if the add pod bug, re-enable this and remove the patch below
    		//		Labels: map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeAmbient},
    
    	}
    
    	client := kube.NewFakeClient(ns, pod)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top