Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 936 for cleaned (0.1 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/CleanArgument.java

                    } else {
                        cleaned.add(arg);
                    }
                }
            }
    
            if (currentArg != null) {
                cleaned.add(currentArg.toString());
            }
    
            int cleanedSz = cleaned.size();
    
            String[] cleanArgs;
    
            if (cleanedSz == 0) {
                cleanArgs = args;
            } else {
                cleanArgs = cleaned.toArray(new String[0]);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 12:51:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/AbstractConfigurationCacheOptInFeatureIntegrationTest.groovy

        def setup() {
            // Verify that the previous test cleaned up state correctly
            assert System.getProperty(StartParameterBuildOptions.ConfigurationCacheOption.PROPERTY_NAME) == null
            assert System.getProperty(StartParameterBuildOptions.IsolatedProjectsOption.PROPERTY_NAME) == null
            problems = new ConfigurationCacheProblemsFixture(testDirectory)
        }
    
        def cleanup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CleanableStore.java

    /**
     * Represents file-based store that can be cleaned by a {@link CleanupAction}.
     */
    public interface CleanableStore {
    
        /**
         * Returns the base directory that should be cleaned for this store.
         */
        File getBaseDir();
    
        /**
         * Returns the files used by this store for internal tracking
         * which should be exempt from the cleanup.
         */
        Collection<File> getReservedCacheFiles();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheCleanupBuildOperationType.java

        /**
         * Sent when the cache is cleaned up.
         */
        public interface Details {
    
            /**
             * Returns the location of the cache.
             */
            File getCacheLocation();
        }
    
        /**
         * Sent after the cache has been cleaned up.
         */
        public interface Result {
    
            /**
             * The number of cache entries deleted during this clean up.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/clean/clean.go

    distinct from those stored in testdata directory; clean does not remove
    those files.
    
    For more about build flags, see 'go help build'.
    
    For more about specifying packages, see 'go help packages'.
    	`,
    }
    
    var (
    	cleanI         bool // clean -i flag
    	cleanR         bool // clean -r flag
    	cleanCache     bool // clean -cache flag
    	cleanFuzzcache bool // clean -fuzzcache flag
    	cleanModcache  bool // clean -modcache flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top