Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,613 for cleaned (0.21 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

                          On `master` branch, these two files are usually reset (cleaned up), unless you have special reasons not to do so.
                      </div>
                    </div>
                    </p>
                    """.stripIndent()
            )
            return violation
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/multicluster_test.go

    								},
    							})
    						})
    					}
    				})
    			}
    
    			// this runs in a separate test context - confirms the cluster local config was cleaned up
    			t.NewSubTest("cross cluster").Run(func(t framework.TestContext) {
    				for _, source := range sources {
    					source := source
    					t.NewSubTest(source.Config().Cluster.StableName()).Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    For testing with the build cache, the build cache directory should be cleaned between tests.
    The easiest way to accomplish this is to configure the local build cache to use a temporary directory.
    
    === Example: Clean build cache between tests
    
    [source,groovy,indent=0]
    .BuildLogicFunctionalTest.groovy
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

            2                 | null                   | 2                | "configured period for build cache cleanup"
            null              | 2                      | 2                | "configured period for deprecated build cache cleanup"
            1                 | 10                     | 10               | "configured period for deprecated build cache cleanup when both are configured"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/CacheBuilder.java

       *
       * <p>Expired entries may be counted in {@link Cache#size}, but will never be visible to read or
       * write operations. Expired entries are cleaned up as part of the routine maintenance described
       * in the class javadoc.
       *
       * @param duration the length of time after an entry is created that it should be automatically
       *     removed
       * @param unit the unit that {@code duration} is expressed in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    		rc.cleanupMounts(volume)
    	}
    
    	klog.V(2).InfoS("Orphan volume cleanup finished")
    	// Clean the cache, cleanup is one shot operation.
    	rc.volumesFailedReconstruction = make([]podVolume, 0)
    }
    
    // updateReconstructedFromNodeStatus tries to file devicePaths of reconstructed volumes from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

        def setup() {
            expectReindentedValidationMessage()
    
            // Must run on isolated daemons so that symlink data can be properly cleaned up between builds
            executer.requireDaemon()
            executer.requireIsolatedDaemons()
    
            buildFile << """
    // This is a workaround to bust the JVM's file canonicalization cache
    def f = file("delete-me")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. pkg/controller/deployment/rolling.go

    		return false, nil
    	}
    
    	// Clean up unhealthy replicas first, otherwise unhealthy replicas will block deployment
    	// and cause timeout. See https://github.com/kubernetes/kubernetes/issues/16737
    	oldRSs, cleanupCount, err := dc.cleanupUnhealthyReplicas(ctx, oldRSs, deployment, maxScaledDown)
    	if err != nil {
    		return false, nil
    	}
    	logger.V(4).Info("Cleaned up unhealthy replicas from old RSes", "count", cleanupCount)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingIntegrationTest.groovy

            expect:
            succeeds "compileJava"
            file("build/generated-sources/TestAppHelper.java").text == 'class TestAppHelper {    String getValue() { return "greetings"; }}'
        }
    
        def "generated sources are cleaned up on full compilations"() {
            given:
            buildFile << """
                dependencies {
                    compileOnly project(":annotation")
                    annotationProcessor project(":processor")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. pkg/util/iptables/iptables_test.go

    		},
    	}
    	lockPath14x, lockPath16x := getLockPaths()
    	// the lockPath14x is a UNIX socket which is cleaned up automatically on close, but the
    	// lockPath16x is a plain file which is not cleaned up.
    	defer os.Remove(lockPath16x)
    	runner := newInternal(fexec, ProtocolIPv4, lockPath14x, lockPath16x)
    
    	err := runner.RestoreAll([]byte{}, NoFlushTables, RestoreCounters)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
Back to top