Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 389 for BenchmarkZ (0.24 sec)

  1. pilot/pkg/xds/testdata/benchmarks/gateways.yaml

      ports:
      - number: 80
        name: http
        protocol: HTTP
      - number: 443
        name: https
        protocol: HTTPS
      resolution: STATIC
      endpoints:
      - address: 1.1.1.1
        labels:
          istio.io/benchmark: "true"
    ---
    {{- range $i := until .Services }}
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: vs-{{$i}}
      namespace: gateway
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 03 15:29:41 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/testdata/benchmarks/gateways-shared.yaml

        name: https
        protocol: HTTPS
      resolution: STATIC
      endpoints:
      - address: 1.1.1.1
        labels:
          istio.io/benchmark: "true"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: gateway
      namespace: gateway
    spec:
      selector:
        istio.io/benchmark: "true"
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 01 15:55:05 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/jmh/java/org/gradle/internal/reflect/HashingAlgorithmsBenchmark.java

    import com.google.common.hash.Hashing;
    import org.bouncycastle.jcajce.provider.digest.Blake2b;
    import org.bouncycastle.jcajce.provider.digest.MD5;
    import org.bouncycastle.jcajce.provider.digest.SHA1;
    import org.openjdk.jmh.annotations.Benchmark;
    import org.openjdk.jmh.annotations.Fork;
    import org.openjdk.jmh.annotations.Level;
    import org.openjdk.jmh.annotations.Measurement;
    import org.openjdk.jmh.annotations.Param;
    import org.openjdk.jmh.annotations.Scope;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/README

    This directory holds small tests and benchmarks of code
    generated by the compiler.  This code is not for importing,
    and the tests are intended to verify that specific optimizations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 206 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/pgo/inline/inline_hot.pprof.node_map

    example.com/pgo/inline.A
    example.com/pgo/inline.(*BS).NS
    7 129
    example.com/pgo/inline.(*BS).NS
    example.com/pgo/inline.T
    8 3
    example.com/pgo/inline.(*BS).NS
    example.com/pgo/inline.T
    13 2
    example.com/pgo/inline.benchmarkB
    example.com/pgo/inline.A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 267 bytes
    - Viewed (0)
  6. src/cmd/internal/test2json/testdata/benchfail.test

    --- FAIL: BenchmarkFoo
    	x_test.go:8: My benchmark
    FAIL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 05 22:27:17 UTC 2018
    - 90 bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/GradleProfilerReporter.java

            baseDir.mkdirs();
            compositeReportGenerator.setGenerators(ImmutableList.of(
                new CsvGenerator(new File(baseDir, "benchmark.csv"), Format.LONG),
                new HtmlGenerator(new File(baseDir, "benchmark.html"))
            ));
    
            resultCollector.summarizeResults(line ->
                System.out.println("  " + line)
            );
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/cmd/internal/test2json/testdata/benchfail.json

    {"Action":"start"}
    {"Action":"output","Test":"BenchmarkFoo","Output":"--- FAIL: BenchmarkFoo\n"}
    {"Action":"output","Test":"BenchmarkFoo","Output":"\tx_test.go:8: My benchmark\n"}
    {"Action":"fail","Test":"BenchmarkFoo"}
    {"Action":"output","Output":"FAIL\n"}
    {"Action":"output","Output":"FAIL\tcommand-line-arguments\t0.008s\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 346 bytes
    - Viewed (0)
  9. src/cmd/internal/test2json/test2json.go

    		l.part(l.b)
    		l.b = l.b[:0]
    	}
    }
    
    var benchmark = []byte("Benchmark")
    
    // isBenchmarkName reports whether b is a valid benchmark name
    // that might appear as the first field in a benchmark result line.
    func isBenchmarkName(b []byte) bool {
    	if !bytes.HasPrefix(b, benchmark) {
    		return false
    	}
    	if len(b) == len(benchmark) { // just "Benchmark"
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  10. pkg/util/coverage/coverage.go

    	// have it "run" them.
    	tests := []testing.InternalTest{}
    	benchmarks := []testing.InternalBenchmark{}
    	examples := []testing.InternalExample{}
    	fuzztargets := []testing.InternalFuzzTarget{}
    
    	var deps fakeTestDeps
    
    	dummyRun := testing.MainStart(deps, tests, benchmarks, fuzztargets, examples)
    	dummyRun.Run()
    
    	// Once it writes to the temporary path, we move it to the intended path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 21:00:21 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top