Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,613 for cleaned (0.35 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. pkg/volume/flexvolume/unmounter.go

    package flexvolume
    
    import (
    	"fmt"
    	"os"
    
    	"k8s.io/klog/v2"
    	"k8s.io/mount-utils"
    	"k8s.io/utils/exec"
    
    	"k8s.io/kubernetes/pkg/volume"
    )
    
    // FlexVolumeUnmounter is the disk that will be cleaned by this plugin.
    type flexVolumeUnmounter struct {
    	*flexVolume
    	// Runner used to teardown the volume.
    	runner exec.Interface
    }
    
    var _ volume.Unmounter = &flexVolumeUnmounter{}
    
    // Unmounter interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 14 13:58:56 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. 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)
  6. plugin/pkg/admission/eventratelimit/apis/eventratelimit/register.go

    func Resource(resource string) schema.GroupResource {
    	return SchemeGroupVersion.WithResource(resource).GroupResource()
    }
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    	// TODO this will get cleaned up with the scheme types are fixed
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Configuration{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 18:00:06 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  7. 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)
  8. pkg/apis/apps/register.go

    	return SchemeGroupVersion.WithResource(resource).GroupResource()
    }
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	// TODO this will get cleaned up with the scheme types are fixed
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&DaemonSet{},
    		&DaemonSetList{},
    		&Deployment{},
    		&DeploymentList{},
    		&DeploymentRollback{},
    		&autoscaling.Scale{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 22 19:26:49 UTC 2019
    - 2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top