Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 194 for Percent (0.19 sec)

  1. samples/helloworld/README.md

    making the helloworld service ready for autoscaling.
    
    Enable autoscaling on both versions of the service:
    
    ```bash
    kubectl autoscale deployment helloworld-v1 --cpu-percent=50 --min=1 --max=10
    kubectl autoscale deployment helloworld-v2 --cpu-percent=50 --min=1 --max=10
    kubectl get hpa
    ```
    
    ## Generate load
    
    ```bash
    ./loadgen.sh &
    ./loadgen.sh & # run it twice to generate lots of load
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/covdata/covdata.go

    		fmt.Fprintf(os.Stderr, "error: %s\n", msg)
    	}
    	fmt.Fprintf(os.Stderr, "usage: go tool covdata [command]\n")
    	fmt.Fprintf(os.Stderr, `
    Commands are:
    
    textfmt     convert coverage data to textual format
    percent     output total percentage of statements covered
    pkglist     output list of package import paths
    func        output coverage profile information for each function
    merge       merge data files together
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/source.html

          <h2>{{.Name}}</h2>{{"" -}}
          <p class="filename">{{.File}}</p>{{"\n" -}}
          <pre onClick="pprof_toggle_asm(event)">{{"\n" -}}
            {{printf "  Total:  %10s %10s (flat, cum) %s" .Flat .Cumulative .Percent -}}
            {{range .Lines -}}{{"\n" -}}
              {{/* source line */ -}}
              <span class=line>{{printf " %6d" .Line}}</span>{{" " -}}
              <span class={{.HTMLClass}}>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/internal/coverage/cfile/ts_test.go

    		t.Fatalf("problems opening text file %s: %v", textfile, err)
    	} else {
    		inf.Close()
    	}
    
    	// Check for percent output with expected tokens.
    	strout := sb.String()
    	want := "of statements"
    	if !strings.Contains(strout, want) {
    		t.Logf("output from run: %s\n", strout)
    		t.Fatalf("percent output missing token: %q", want)
    	}
    }
    
    var funcInvoked bool
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/cover.go

    			}
    			return metaFile, nil
    		}
    	}
    	return "", fmt.Errorf("internal error: unable to locate build action for package %q run action", p.ImportPath)
    }
    
    // WriteCoveragePercent writes out to the writer 'w' a "percent
    // statements covered" for the package whose test-run action is
    // 'runAct', based on the meta-data file 'mf'. This helper is used in
    // cases where a user runs "go test -cover" on a package that has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. pkg/ctrlz/topics/assets/templates/mem.html

                    let frac = ms.GCCPUFraction;
                    if (frac < 0) {
                        frac = 0.0;
                    }
                    let percent = (frac * 100).toFixed(2);
                    document.getElementById("GCCPUFraction").innerText = percent + "%";
    
                    updateRefreshTime();
                }
            }
    
            function onerror(e) {
                console.error(e);
            }
        }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. tests/integration/security/normalization_test.go

    			switch i {
    			case 0x5c:
    				output = strings.ReplaceAll(output, `\`, `/`)
    			case 0x7e:
    				output = strings.ReplaceAll(output, `%7e`, `~`)
    			}
    			if err != nil {
    				t.Errorf("failed to unescape percent encoded path %s: %v", input, err)
    			}
    		}
    		percentEncodedCases = append(percentEncodedCases, expect{in: input, out: output})
    	}
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			cases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_statements.txt

    stdout 'pkg4	\S+	coverage: \[no statements\]'
    [GOEXPERIMENT:coverageredesign] ! stderr 'link(\.exe"?)? -'
    ! stderr 'compile(\.exe"?)? -'
    ! stderr 'cover(\.exe"?)? -'
    [GOEXPERIMENT:coverageredesign] stderr 'covdata(\.exe"?)? percent'
    
    # Now add in -coverprofile.
    go test -cover -coverprofile=cov.dat ./pkg1 ./pkg2 ./pkg3 ./pkg4
    [!GOEXPERIMENT:coverageredesign] stdout 'pkg1	\[no test files\]'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:36:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/report/HtmlTestResultsFixture.groovy

            assert counter.text() == "-"
        }
    
        void assertHasSuccessRate(int rate) {
            def testDiv = content.select("div#successRate")
            assert testDiv != null
            def counter = testDiv.select("div.percent")
            assert counter != null
            assert counter.text() == "${rate}%"
        }
    
        void assertHasOverallResult(String result) {
            assert content.select("div#successRate").hasClass(result)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. tests/integration/pilot/mirror_test.go

    //	| Host0 | ----------> | Host1 | ----------> | Host2 |
    //	|-------|             |-------|             |-------|
    //
    
    type VirtualServiceMirrorConfig struct {
    	Name       string
    	Absent     bool
    	Percent    float64
    	MirrorHost string
    }
    
    type testCaseMirror struct {
    	name                string
    	absent              bool
    	percentage          float64
    	threshold           float64
    	expectedDestination echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top