Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,250 for clean (0.41 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutor.java

                    lastResult = executeBuildAndAccumulateInputs(action, new AccumulateBuildInputsListener(buildInputs), buildSession);
    
                    // Let the VFS clean itself up after the build
                    virtualFileSystem.afterBuildFinished();
    
                    if (buildInputs.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:41:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

            withBuildScript(
                """
                @Suppress("DSL_SCOPE_VIOLATION")
                plugins {
                    id("base")
                }
                """
            )
    
            build("clean")
        }
    
        @Test
        fun `non top-level use of the plugins block fails with reasonable error message`() {
    
            withBuildScript(
                """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

            } else {
                return binary.getTasks().getBuild().getPath();
            }
        }
    
        @Override
        public String getCleanTaskPath() {
            return taskPath("clean");
        }
    
        private String taskPath(final String taskName) {
            final String projectPath = binary.getComponent().getProjectPath();
            if (":".equals(projectPath)) {
                return ":" + taskName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. pkg/registry/core/service/storage/alloc.go

    				klog.ErrorS(err, "failed to clean up after successful service update",
    					"service", klog.KObj(service),
    					"shouldRelease", released,
    					"released", actuallyReleased)
    			}
    		},
    		revert: func() {
    			if dryRun {
    				return
    			}
    			if actuallyReleased, err := al.releaseIPs(allocated); err != nil {
    				klog.ErrorS(err, "failed to clean up after failed service update",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                    }
                }
            """
    
            expect:
            succeeds "clean", "compileJava"
    
            fails "-Pjava7", "clean", "compileJava"
            failure.assertHasErrorOutput "Main.java:8: error: cannot find symbol"
    
            succeeds "-Pjava8", "clean", "compileJava"
        }
    
        // bootclasspath has been removed in Java 9+
        @Requires(UnitTestPreconditions.Jdk8OrEarlier)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. pilot/pkg/trustbundle/trustbundle_test.go

    	}
    
    	// Finally, remove all certs and ensure trustBundle is clean
    	err = tb.UpdateTrustAnchor(&TrustAnchorUpdate{
    		TrustAnchorConfig: TrustAnchorConfig{Certs: []string{}},
    		Source:            SourceIstioCA,
    	})
    	if err != nil {
    		t.Errorf("clear cert update failed. Error: %v", err)
    	}
    	err = tb.UpdateTrustAnchor(&TrustAnchorUpdate{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/RouteFailureTest.kt

        println("\n\nRequest to ${server2.inetSocketAddress}")
        executeSynchronously(request)
          .apply {
            // We may have a single failed request if not clean shutdown
            if (cleanShutdown) {
              assertSuccessful()
              assertCode(200)
    
              assertThat(server2.requestCount).isEqualTo(1)
            } else {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue May 14 17:48:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. src/runtime/arena_test.go

    func TestUserArena(t *testing.T) {
    	// Set GOMAXPROCS to 2 so we don't run too many of these
    	// tests in parallel.
    	defer GOMAXPROCS(GOMAXPROCS(2))
    
    	// Start a subtest so that we can clean up after any parallel tests within.
    	t.Run("Alloc", func(t *testing.T) {
    		ss := &smallScalar{5}
    		runSubTestUserArenaNew(t, ss, true)
    
    		sp := &smallPointer{new(smallPointer)}
    		runSubTestUserArenaNew(t, sp, true)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

                        deleter.deleteRecursively(localStateRoot);
                    } catch (IOException ex) {
                        throw new UncheckedIOException(String.format("Failed to clean up local state files for %s: %s", work.getDisplayName(), localStateRoot), ex);
                    }
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/compress/flate/deflate_test.go

    	// Part 1 before wrap, should match clean state.
    	got := len(enc.encode(nil, testData))
    	if wantFirstTokens != got {
    		t.Errorf("got %d, want %d tokens", got, wantFirstTokens)
    	}
    
    	// Verify we are about to wrap.
    	if enc.cur != bufferReset {
    		t.Errorf("got %d, want e.cur to be at bufferReset (%d)", enc.cur, bufferReset)
    	}
    
    	// Part 2 should match clean state as well even if wrapped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top