Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 528 for clen (0.04 sec)

  1. src/path/filepath/path.go

    // Rel calls [Clean] on the result.
    func Rel(basepath, targpath string) (string, error) {
    	baseVol := VolumeName(basepath)
    	targVol := VolumeName(targpath)
    	base := Clean(basepath)
    	targ := Clean(targpath)
    	if sameWord(targ, base) {
    		return ".", nil
    	}
    	base = base[len(baseVol):]
    	targ = targ[len(targVol):]
    	if base == "." {
    		base = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/route/address.go

    	// care".
    	nlen, alen, slen := int(b[1]), int(b[2]), int(b[3])
    	if nlen == 0xff {
    		nlen = 0
    	}
    	if alen == 0xff {
    		alen = 0
    	}
    	if slen == 0xff {
    		slen = 0
    	}
    	l := 4 + nlen + alen + slen
    	if len(b) < l {
    		return 0, nil, errInvalidAddr
    	}
    	data := b[4:]
    	var name string
    	var addr []byte
    	if nlen > 0 {
    		name = string(data[:nlen])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceTest.groovy

            then:
            oldCacheDir.assertDoesNotExist()
            oldDist.assertDoesNotExist()
            currentCacheDir.assertExists()
            currentDist.assertExists()
        }
    
        def "skips clean up on stop when clean up has already occurred"() {
            when:
            cleanupService.cleanup()
    
            then:
            cacheConfigurations.getCleanupFrequency() >> property(CleanupFrequency.ALWAYS)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:46:34 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    ----
    $ rm -rf ~/.gradle/caches/build-cache-1 <1>
    $ ./gradlew clean --quiet <2>
    $ ./gradlew assemble --build-cache <3>
    
    BUILD SUCCESSFUL
    4 actionable tasks: 4 executed
    
    $ ./gradlew clean --quiet <4>
    $ ./gradlew assemble --build-cache <5>
    
    BUILD SUCCESSFUL
    4 actionable tasks: 1 executed, 3 from cache
    ----
    <1> We want to start with an empty local cache.
    <2> Clean the project to remove any unwanted leftovers from previous builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. src/cmd/go/internal/search/search.go

    	}
    
    	if m.IsLiteral() {
    		m.Dirs = []string{m.pattern}
    		return
    	}
    
    	// Clean the path and create a matching predicate.
    	// filepath.Clean removes "./" prefixes (and ".\" on Windows). We need to
    	// preserve these, since they are meaningful in MatchPattern and in
    	// returned import paths.
    	cleanPattern := filepath.Clean(m.pattern)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

    public class LifecycleExecutionPlanCalculatorStub implements LifecycleExecutionPlanCalculator {
        // clean
    
        public static final MojoDescriptor PRE_CLEAN = createMojoDescriptor("pre-clean");
    
        public static final MojoDescriptor CLEAN = createMojoDescriptor("clean");
    
        public static final MojoDescriptor POST_CLEAN = createMojoDescriptor("post-clean");
    
        // default (or at least some of them)
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

       *     1
       *     100
       *     2
       *
       *     CLEAN 3400330d1dfc7f3f7f4b8d4d803dfcf6 832 21054
       *     DIRTY 335c4c6028171cfddfbaae1a9c313c52
       *     CLEAN 335c4c6028171cfddfbaae1a9c313c52 3934 2342
       *     REMOVE 335c4c6028171cfddfbaae1a9c313c52
       *     DIRTY 1ab96a171faeeee38496d8b330771a7a
       *     CLEAN 1ab96a171faeeee38496d8b330771a7a 1600 234
       *     READ 335c4c6028171cfddfbaae1a9c313c52
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

            }
            tasks.withType<Delete>().configureEach {
                if (name == "clean${name.capitalize()}") {
                    // do not use 'tasks.named("clean...")' because that realizes the base task to apply the clean rule
                    delete(performanceTestReport)
                    dependsOn("clean${performanceTestReportZipTask.name.capitalize()}")
                }
            }
            return performanceTestReport
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top