Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,613 for cleaned (0.31 sec)

  1. pkg/test/framework/components/echo/echotest/setup.go

    //
    // For example, given apps a, b, and c in 2 clusters,
    // these tests would all run before the context is cleaned up:
    //   - a/to_b/from_cluster-1
    //   - a/to_b/from_cluster-2
    //   - a/to_c/from_cluster-1
    //   - a/to_c/from_cluster-2
    //   - cleanup...
    //   - b/to_a/from_cluster-1
    //     ...
    func (t *T) Setup(setupFn srcSetupFn) *T {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. pkg/volume/util/nested_volumes.go

    		var myMountPoints []string  // mount points that match name
    		for _, vol := range container.VolumeMounts {
    			cleaned := filepath.Clean(vol.MountPath)
    			allMountPoints = append(allMountPoints, cleaned)
    			if vol.Name == name {
    				myMountPoints = append(myMountPoints, cleaned)
    			}
    		}
    		sort.Strings(allMountPoints)
    		parentPrefix := ".." + string(os.PathSeparator)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 12:19:17 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/LeaksFileHandles.java

     */
    
    package org.gradle.test.fixtures.file;
    
    import java.lang.annotation.*;
    
    /**
     * Declares that the test holds files open and therefore not to error if the test workspace can't be cleaned up.
     *
     * @see AbstractTestDirectoryProvider
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.TYPE})
    @Inherited
    public @interface LeaksFileHandles {
        String value() default "";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1016 bytes
    - Viewed (0)
  4. releasenotes/notes/43951.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 43950
    
    releaseNotes:
    - |
      **Fixed** WorkloadEntry resources never being cleaned up if multiple
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 17 19:42:40 UTC 2023
    - 245 bytes
    - Viewed (0)
  5. pilot/pkg/model/typed_xds_cache_test.go

    	}
    	req = &PushRequest{Start: zeroTime.Add(time.Duration(2))}
    	// after adding an entry with the same key, previous indexes are correctly cleaned
    	c.Add(secondEntry.Key(), secondEntry, req, res)
    
    	assert.Equal(t, cache.store.Len(), 1)
    
    	// Flush the cache and validate the index is cleaned.
    	cache.Flush()
    	assert.Equal(t, cache.indexLength(), 1)
    
    	assert.Equal(t, cache.configIndexSnapshot(), map[ConfigHash]sets.Set[uint64]{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/SkipEmptyIncrementalWorkStep.java

                if (didWork) {
                    LOGGER.info("Cleaned previous output of {} as it has no source files.", work.getDisplayName());
                    skipOutcome = ExecutionOutcome.EXECUTED_NON_INCREMENTALLY;
                    executionReason = "Cleaned previous output";
                } else {
                    skipOutcome = ExecutionOutcome.SHORT_CIRCUITED;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:30 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_replace_absolute_windows.txt

    # Test a replacement with an absolute path (so the path isn't
    # cleaned by having filepath.Abs called on it). This checks
    # whether the modindex logic cleans the modroot path before using
    # it.
    
    [!GOOS:windows] skip
    [short] skip
    
    go run print_go_mod.go # use this program to write a go.mod with an absolute path
    cp stdout go.mod
    
    go list -modfile=go.mod all
    -- print_go_mod.go --
    //go:build ignore
    package main
    
    import (
        "fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 693 bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/HasCleanupAction.java

     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    /**
     * A cache entity that can be cleaned on demand.
     */
    public interface HasCleanupAction {
        /**
         * Cleans up the cache, if any cleanup action has been provided.
         */
        void cleanup();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 844 bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCleanupExecutor.java

            if (!dir.exists()) {
                // Directory does not exist, nothing to clean up
                return Optional.empty();
            }
    
            if (!gcFile.exists()) {
                // If GC file hasn't been created, then this cache hasn't been used before.
                // We create the GC file, but there's nothing to clean up
                try {
                    FileUtils.touch(gcFile);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_volumes.go

    		// TODO: getMountedVolumePathListFromDisk() call may be redundant with
    		// kl.getPodVolumePathListFromDisk(). Can this be cleaned up?
    		if podVolumesExist := kl.podVolumesExist(uid); podVolumesExist {
    			errorPods++
    			klog.V(3).InfoS("Orphaned pod found, but volumes are not cleaned up", "podUID", uid)
    			continue
    		}
    
    		// Attempt to remove the pod volumes directory and its subdirs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top