Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 744 for Percent (0.36 sec)

  1. src/cmd/go/testdata/script/cover_main_import_path.txt

    env SAVEGOCOVERDIR=$GOCOVERDIR
    
    mkdir $WORK/covdata
    env GOCOVERDIR=$WORK/covdata
    exec $WORK/prog.exe
    
    # Restore previous GOCOVERDIR setting
    env GOCOVERDIR=$SAVEGOCOVERDIR
    
    # Report percent lines covered.
    go tool covdata percent -i=$WORK/covdata
    stdout '\s*mainwithtest\s+coverage:'
    ! stdout 'main\s+coverage:'
    
    # Go test -cover should behave the same way.
    go test -cover .
    stdout 'ok\s+mainwithtest\s+\S+\s+coverage:'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/resources/org/gradle/api/internal/tasks/testing/report/style.css

    .infoBox p {
        margin: 0;
    }
    
    .counter, .percent {
        font-size: 120%;
        font-weight: bold;
        margin-bottom: 8px;
    }
    
    #duration {
        width: 125px;
    }
    
    #successRate, .summaryGroup {
        border: solid 2px #d0d0d0;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }
    
    #successRate {
        width: 140px;
        margin-left: 35px;
    }
    
    #successRate .percent {
        font-size: 180%;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectorMonitoringStrategy.java

            return thrashingThreshold;
        }
    
        public boolean isAboveHeapUsageThreshold(int percent) {
            return heapUsageThreshold != -1 && percent >= heapUsageThreshold;
        }
    
        public boolean isAboveNonHeapUsageThreshold(int percent) {
            return nonHeapUsageThreshold != -1 && percent >= nonHeapUsageThreshold;
        }
    
        public boolean isAboveGcRateThreshold(double gcEventsPerSec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

         * percent-encoded in a path.
         *
         * See https://url.spec.whatwg.org/#percent-encoded-bytes
         */
        fun newInstance(): UrlComponentEncodingTester {
          return UrlComponentEncodingTester()
            .allAscii(Encoding.IDENTITY)
            .nonPrintableAscii(Encoding.PERCENT)
            .override(
              Encoding.SKIP,
              '\t'.code,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/fixture/PrettyCalculatorSpec.groovy

        def "knows percentage change"() {
            expect:
            percentChange(Amount.valueOf(current, Duration.SECONDS), Amount.valueOf(previous, Duration.SECONDS)) == percent
    
            where:
            current  | previous | percent
            1        | 1        | 0
            3        | 1        | 200
            1        | 3        | -66.67
            2        | 3        | -33.33
            5        | 4        | 25
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. internal/s3select/sql/stringfuncs.go

    )
    
    const (
    	percent    rune = '%'
    	underscore rune = '_'
    	runeZero   rune = 0
    )
    
    func evalSQLLike(text, pattern string, escape rune) (match bool, err error) {
    	s := []rune{}
    	prev := runeZero
    	hasLeadingPercent := false
    	patLen := len([]rune(pattern))
    	for i, r := range pattern {
    		if i > 0 && prev == escape {
    			switch r {
    			case percent, escape, underscore:
    				s = append(s, r)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_build_pkg_select.txt

    # Execute.
    mkdir $WORK/covdata
    env GOCOVERDIR=$WORK/covdata
    exec $WORK/modex.exe
    
    # Restore previous GOCOVERDIR setting
    env GOCOVERDIR=$SAVEGOCOVERDIR
    
    # Examine the result.
    go tool covdata percent -i=$WORK/covdata
    stdout 'coverage: 100.0% of statements'
    
    # By default we want to see packages resident in the module covered,
    # but not dependencies.
    go tool covdata textfmt -i=$WORK/covdata -o=$WORK/covdata/out.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt

     *
     *  * Characters in `encodeSet` are percent-encoded.
     *
     *  * Control characters and non-ASCII characters are percent-encoded.
     *
     *  * All other characters are copied without transformation.
     *
     * @param alreadyEncoded true to leave '%' as-is; false to convert it to '%25'.
     * @param strict true to encode '%' if it is not the prefix of a valid percent encoding.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
        GradleHandle gradle
    
        def setup() {
            server.start()
        }
    
        def "shows progress bar and percent phase completion"() {
            createDirs("a", "b", "c", "d")
            settingsFile << """
                ${server.callFromBuild('settings')}
                include "a", "b", "c", "d"
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/traffic-mirroring-template.yaml

    spec:
      hosts:
        - b
      http:
        - route:
            - destination:
                host: b
          mirror:
            host: {{.MirrorHost}}
    {{- if not .Absent }}
          mirrorPercentage:
            value: {{.Percent}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 24 22:09:33 UTC 2020
    - 306 bytes
    - Viewed (0)
Back to top