Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,504 for cleaned (0.23 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/BuildOutputCleanupRegistry.java

    import java.io.File;
    import java.util.Set;
    
    @ServiceScope(Scope.Build.class)
    public interface BuildOutputCleanupRegistry {
    
        /**
         * Registers outputs to be cleaned up as {@link org.gradle.api.Project#files(Object...)}.
         */
        void registerOutputs(Object files);
    
        /**
         * Determines if an output file is owned by this build and therefore can be safely removed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. pkg/controller/deployment/rolling_test.go

    		{ // expect unhealthy replicas from old replica sets been cleaned up
    			deploymentReplicas:  10,
    			maxUnavailable:      intstr.FromInt32(2),
    			oldReplicas:         10,
    			newReplicas:         0,
    			readyPodsFromOldRS:  8,
    			readyPodsFromNewRS:  0,
    			scaleExpected:       true,
    			expectedOldReplicas: 8,
    		},
    		{ // expect 1 unhealthy replica from old replica sets been cleaned up, and 1 ready pod been scaled down
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ResolveTaskExecutionModeExecuterTest.groovy

        final executionMode = DefaultTaskExecutionMode.incremental()
    
        final executer = new ResolveTaskExecutionModeExecuter(repository, delegate)
    
        def 'taskContext is initialized and cleaned as expected'() {
            when:
            executer.execute(task, taskState, taskContext)
    
            then: 'taskContext is initialized with task artifact state'
            1 * taskContext.taskProperties >> taskProperties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 03 11:19:27 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. testing/precondition-tester/README.md

    precondition, which we won't satisfy anywhere as we don't run tests on such hardware, will always be ignored.
    
    Multiple occasions happened when engineers were caught by surprise finding tests not running anywhere (e.g., tests depending on non-LTS, cleaned up JDK distributions). This project is the result of an initiative to [redesign the [recondition] system](https://github.com/gradle/gradle/pull/22885), where we aim to precisely track if all preconditions are satisfied...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. ci/official/utilities/setup_docker.sh

      if [[ "$TFCI_DOCKER_REBUILD_UPLOAD_ENABLE" == 1 ]]; then
        docker push "$TFCI_DOCKER_IMAGE"
      fi
    fi
    
    # Keep the existing "tf" container if it's already present.
    # The container is not cleaned up automatically! Remove it with:
    # docker rm tf
    if ! docker container inspect tf >/dev/null 2>&1 ; then
      # Pass all existing TFCI_ variables into the Docker container
      env_file=$(mktemp)
      env | grep ^TFCI_ > "$env_file"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 18:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/go/printer/example_test.go

    	// Remove braces {} enclosing the function body, unindent,
    	// and trim leading and trailing white space.
    	s := buf.String()
    	s = s[1 : len(s)-1]
    	s = strings.TrimSpace(strings.ReplaceAll(s, "\n\t", "\n"))
    
    	// Print the cleaned-up body text to stdout.
    	fmt.Println(s)
    }
    
    func ExampleFprint() {
    	printSelf()
    
    	// Output:
    	// funcAST, fset := parseFunc("example_test.go", "printSelf")
    	//
    	// var buf bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:55:02 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/CleanupTestDirectory.groovy

    /**
     * Instructs Spock to use {@link CleanupTestDirectoryExtension} to clean up the test directory provided by a
     * {@link org.gradle.test.fixtures.file.TestDirectoryProvider}.  This is to work around the fact that using
     * a test directory provider as a TestRule causes spock to swallow any test failures and the test directory
     * is cleaned up even for failed tests.  {@link CleanupTestDirectoryExtension} on the other hand, registers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    	}{
    		{
    			name:                        "volume is in DSW and is not cleaned",
    			podInfos:                    []podInfo{defaultPodInfo},
    			volumesFailedReconstruction: []podVolume{defaultVolume},
    			expectedUnmounts:            0,
    		},
    		{
    			name:                        "volume is not in DSW and is cleaned",
    			podInfos:                    []podInfo{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceResults.groovy

            return displayName
        }
    
        String getDisplayName() {
            def displayName = "Results for test project '$testProject' with tasks ${tasks.join(', ')}"
            if (cleanTasks) {
                displayName += ", cleaned with ${cleanTasks.join(', ')}"
            }
            return displayName
        }
    
        Collection<BaselineVersion> getBaselineVersions() {
            return baselineVersions.values()
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. pkg/apis/policy/register.go

    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	// TODO this gets cleaned up when the types are fixed
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&PodDisruptionBudget{},
    		&PodDisruptionBudgetList{},
    		&Eviction{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top