Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,613 for cleaned (0.15 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

            file("build/classes/java/main/A.txt").exists()
    
            when:
            a.delete()
            succeeds "compileJava"
    
            then: "they all get cleaned"
            outputs.deletedClasses("A")
            !file("build/generated/sources/annotationProcessor/java/main/A.txt").exists()
            !file("build/generated/sources/headers/java/main/A.txt").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	utilflowcontrol "k8s.io/apiserver/pkg/util/flowcontrol"
    	"k8s.io/client-go/tools/cache"
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    // verifies the cacheWatcher.process goroutine is properly cleaned up even if
    // the writes to cacheWatcher.result channel is blocked.
    func TestCacheWatcherCleanupNotBlockedByResult(t *testing.T) {
    	var lock sync.RWMutex
    	var w *cacheWatcher
    	count := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            then:
            fixture.staleFilesHaveBeenRemoved()
    
            where:
            outputDir << ['build', 'build/outputs', 'build/some/deeply/nested/structure']
        }
    
        def "build operations are created for stale outputs cleanup"() {
            def operations = new BuildOperationsFixture(executer, testDirectoryProvider)
            def fixture = new StaleOutputFixture()
            fixture.createInputs()
            buildScript(fixture.buildScript)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. pkg/volume/util/fsquota/quota_linux.go

    // ID -> pod
    var quotaPodMap = make(map[common.QuotaID]types.UID)
    
    // Directory -> pod
    var dirPodMap = make(map[string]types.UID)
    
    // Backing device -> applier
    // This is *not* cleaned up; its size will be bounded.
    var devApplierMap = make(map[string]common.LinuxVolumeQuotaApplier)
    
    // Directory -> applier
    var dirApplierMap = make(map[string]common.LinuxVolumeQuotaApplier)
    var dirApplierLock sync.RWMutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  5. src/packaging/deb/init.d/fess

    		log_end_msg 0
    		exit 0
    	fi
    
    	# Prepare environment
    	mkdir -p "$LOG_DIR" "$DATA_DIR" && chown "$FESS_USER":"$FESS_GROUP" "$LOG_DIR" "$DATA_DIR"
    
    	# Ensure that the PID_DIR exists (it is cleaned at OS startup time)
    	if [ -n "$PID_DIR" ] && [ ! -e "$PID_DIR" ]; then
    		mkdir -p "$PID_DIR" && chown "$FESS_USER":"$FESS_GROUP" "$PID_DIR"
    	fi
    	if [ -n "$PID_FILE" ] && [ ! -e "$PID_FILE" ]; then
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/CachedScalaCompileIntegrationTest.groovy

            class3.isFile()
            file(compiledFile).isFile()
    
            when:
            run("clean")
            withBuildCache().run(compilationTask)
            then:
            skipped(compilationTask)
    
            when:
            assert source3.delete()
            withBuildCache().run(compilationTask)
            then: 'Gradle cleans up the stale class file'
            executedAndNotSkipped(compilationTask)
            class1.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                        res.addEdge(sourceV, newV, edge);
                    }
                }
                // System.err.println("Original graph("+graph.getVertices().size()+"):\n"+graph.toString());
                // System.err.println("Cleaned("+requestedScope+") graph("+res.getVertices().size()+"):\n"+res.toString());
                // System.err.println("Linked("+requestedScope+")
                // subgraph("+linkedRes.getVertices().size()+"):\n"+linkedRes.toString());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. src/net/http/servemux121.go

    			return RedirectHandler(u.String(), StatusMovedPermanently), u.Path
    		}
    
    		return mux.handler(r.Host, r.URL.Path)
    	}
    
    	// All other requests have any port stripped and path cleaned
    	// before passing to mux.handler.
    	host := stripHostPort(r.Host)
    	path := cleanPath(r.URL.Path)
    
    	// If the given path is /tree and its handler is not registered,
    	// redirect for /tree/.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. tests/integration/pilot/vm_test.go

    				retry.UntilSuccessOrFail(t, func() error {
    					entries := getWorkloadEntriesOrFail(t, autoVM)
    					if len(entries) != 1 || entries[0].UID != initialWLE.UID {
    						t.Fatalf("WorkloadEntry was cleaned up unexpectedly")
    					}
    
    					currentPilot := entries[0].Annotations[annotation.IoIstioWorkloadController.Name]
    					if currentPilot == initialPilot || !strings.HasPrefix(currentPilot, "istiod-") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDoc.java

                }
            });
        }
    
        /**
         * Creates the file to hold the options for the scaladoc process.
         *
         * @implNote This file will be cleaned up by {@link GenerateScaladoc#execute()}.
         */
        @Nullable
        private File createOptionsFile() {
            return new File(getTemporaryDir(), "scaladoc.options");
        }
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top