Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for cLower (0.31 sec)

  1. src/cmd/compile/internal/coverage/cover.go

    package coverage
    
    // This package contains support routines for coverage "fixup" in the
    // compiler, which happens when compiling a package whose source code
    // has been run through "cmd/cover" to add instrumentation. The two
    // important entry points are FixupVars (called prior to package init
    // generation) and FixupInit (called following package init
    // generation).
    
    import (
    	"cmd/compile/internal/base"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceResults.groovy

        }
    
        void assertCurrentVersionHasNotRegressed() {
            if (hasRegressionChecks()) {
                def slower = checkBaselineVersion({ it.significantlyFasterThan(current) }, { it.getSpeedStatsAgainst(displayName, current) })
                if (slower) {
                    throw new AssertionError(Object.cast(slower))
                }
            }
        }
    
        void assertCurrentVersionHasNotRegressedWithHighRelativeMedianDifference() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/strconv/itoa.go

    // for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
    // for digit values >= 10.
    func FormatUint(i uint64, base int) string {
    	if fastSmalls && i < nSmalls && base == 10 {
    		return small(int(i))
    	}
    	_, s := formatBits(nil, i, base, false, false)
    	return s
    }
    
    // FormatInt returns the string representation of i in the given base,
    // for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. pkg/test/framework/scope.go

    )
    
    // scope hold resources in a particular scope.
    type scope struct {
    	// friendly name for the scope for debugging purposes.
    	id string
    
    	parent *scope
    
    	resources []resource.Resource
    
    	closers []io.Closer
    
    	children []*scope
    
    	closeChan chan struct{}
    
    	topLevel bool
    
    	skipDump bool
    
    	// Mutex to lock changes to resources, children, and closers that can be done concurrently
    	mu sync.Mutex
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 21:55:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/tool/tool.go

    // Other binaries could be in the same directory so don't
    // show those with the 'go tool' command.
    func isGccgoTool(tool string) bool {
    	switch tool {
    	case "cgo", "fix", "cover", "godoc", "vet":
    		return true
    	}
    	return false
    }
    
    func init() {
    	base.AddChdirFlag(&CmdTool.Flag)
    	CmdTool.Flag.BoolVar(&toolN, "n", false, "")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-local/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCache.java

            tempFileStore.withTempFile(key, file -> {
                try {
                    Closer closer = Closer.create();
                    try {
                        result.accept(closer.register(new FileOutputStream(file)));
                    } catch (Exception e) {
                        throw closer.rethrow(e);
                    } finally {
                        closer.close();
                    }
                } catch (IOException ex) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. src/testing/newcover.go

    var cover2 struct {
    	mode        string
    	tearDown    func(coverprofile string, gocoverdir string) (string, error)
    	snapshotcov func() float64
    }
    
    // registerCover2 is invoked during "go test -cover" runs.
    // It is used to record a 'tear down' function
    // (to be called when the test is complete) and the coverage mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. src/cmd/cover/cfg_test.go

    	}
    }
    
    func TestCoverOnPackageWithNoTestFiles(t *testing.T) {
    	testenv.MustHaveGoRun(t)
    
    	// For packages with no test files, the new "go test -cover"
    	// strategy is to run cmd/cover on the package in a special
    	// "EmitMetaFile" mode. When running in this mode, cmd/cover walks
    	// the package doing instrumentation, but when finished, instead of
    	// writing out instrumented source files, it directly emits a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. testing/performance/docs/performance-bisect.md

            def slower = checkBaselineVersion({ it.fasterThan(current) }, { it.getSpeedStatsAgainst(displayName, current) })
    //        def larger = checkBaselineVersion({ it.usesLessMemoryThan(current) }, { it.getMemoryStatsAgainst(displayName, current) })
    //        if (slower && larger) {
    //            throw new AssertionError("$slower\n$larger")
    //        }
            if (slower) {
                throw new AssertionError(slower)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/LittleEndianByteArray.java

      }
    
      /**
       * Similar to load64, but allows offset + 8 > input.length, padding the result with zeroes. This
       * has to explicitly reverse the order of the bytes as it packs them into the result which makes
       * it slower than the native version.
       *
       * @param input the input bytes
       * @param offset the offset into the array at which to start reading
       * @param length the number of bytes from the input to read
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top