Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,313 for clen (0.05 sec)

  1. src/cmd/compile/internal/ssa/nilcheck_test.go

    			If("bool2", "extra", "exit")),
    		Bloc("extra",
    			Goto("exit")),
    		Bloc("exit",
    			Exit("mem")))
    
    	CheckFunc(fun.f)
    	nilcheckelim(fun.f)
    
    	// clean up the removed nil check
    	fuse(fun.f, fuseTypePlain)
    	deadcode(fun.f)
    
    	CheckFunc(fun.f)
    	for _, b := range fun.f.Blocks {
    		if b == fun.blocks["secondCheck"] && isNilCheck(b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalNode.java

    import javax.annotation.Nullable;
    
    /**
     * Represents a node in the graph that controls ordinality of destroyers and producers as they are
     * added to the task graph.  For example "clean build" on the command line implies that the user wants
     * to run the clean tasks of each project before the build tasks of each project.  Ordinal nodes ensure
     * this order by tracking the dependencies of destroyers and producers in each group of tasks added to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileAvoidanceWithBuildCacheServiceIntegrationTest.groovy

            then:
            executedAndNotSkipped ':b:jar'
            executedAndNotSkipped ':a:jar'
    
            when:
            make_abi_compatible_change_on_b()
    
            withBuildCache().run 'clean', 'assemble'
    
            then:
            executedAndNotSkipped ':b:jar'
            skipped ':a:compileJava'
        }
    
        def "classes from cache are not used when dependent class is changed in ABI breaking way"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildInputFilesConfigUsingTask.out

    > Task :clean UP-TO-DATE
    > Task :compileJava
    > Task :instrumentClasses2
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 141 bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/LeastRecentlyUsedCacheCleanup.java

        }
    
        @Override
        public void clean(CleanableStore cleanableStore, CleanupProgressMonitor progressMonitor) {
            LOGGER.info("{} removing files not accessed on or after {}.", cleanableStore.getDisplayName(), new Date(removeUnusedEntriesOlderThan.get()));
            super.clean(cleanableStore, progressMonitor);
        }
    
        @Override
        protected boolean shouldDelete(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. build/root/Makefile

    test-cmd:
    	hack/make-rules/test-cmd.sh
    endif
    
    define CLEAN_HELP_INFO
    # Remove all build artifacts.
    #
    # Example:
    #   make clean
    endef
    .PHONY: clean
    ifeq ($(PRINT_HELP),y)
    clean:
    	echo "$$CLEAN_HELP_INFO"
    else
    clean:
    	build/make-clean.sh
    	hack/make-rules/clean.sh
    endif
    
    define VET_HELP_INFO
    # Run 'go vet'.
    #
    # Args:
    #   WHAT: Directory names to vet.  All *.go files under these
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. testing/soak/src/integTest/groovy/org/gradle/jvm/JavaCompilationSoakTest.groovy

            expect:
            10.times {
                println("Run $it")
                succeeds("clean", "assemble", "-Pcounter="+it)
            }
        }
    
        def "can recompile many times in a row with a reused compiler daemon"() {
            expect:
            10.times {
                println("Run $it")
                succeeds("clean", "assemble", "-Pcounter=0")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/testdata/bootstrapdump.json

                    },
                    "metadata": {
                            "build.type": "RELEASE",
                            "revision.sha": "436f365a8007cd8a13a9f1321e7cce94bcc8883e",
                            "revision.status": "Clean",
                            "ssl.version": "BoringSSL"
                        }
                }
            }
        }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 05 11:02:00 UTC 2022
    - 739 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/tests/cacheableBundle-caching.sample.conf

    executable: gradle
    args: "bundle clean"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 61 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildGitClone.sample.conf

    commands: [{
        executable: gradle
        args: clean cloneGradleProfiler
    }, {
        executable: gradle
        args: cloneGradleProfiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 133 bytes
    - Viewed (0)
Back to top