Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 389 for BenchmarkZ (0.93 sec)

  1. docs/it/docs/index.md

    Per approfondire, consulta la sezione <a href="https://fastapi.tiangolo.com/benchmarks/" class="internal-link" target="_blank">Benchmarks</a>.
    
    ## Dipendenze opzionali
    
    Usate da Pydantic:
    
    * <a href="https://github.com/JoshData/python-email-validator" target="_blank"><code>email_validator</code></a> - per la validazione di email.
    
    Usate da Starlette:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_benchmark_chatty_success.txt

    # Sanity check that output happens. We don't provide -count because the amount
    # of output is variable.
    stdout 'this is sub-0'
    stdout 'this is sub-1'
    stdout 'this is sub-2'
    
    # Benchmarks should not print CONT.
    ! stdout CONT
    
    -- chatty_test.go --
    package chatty_bench
    
    import (
    	"testing"
    	"fmt"
    )
    
    func BenchmarkChatty(b *testing.B) {
        for i := 0; i < 3; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 21 18:28:05 UTC 2020
    - 629 bytes
    - Viewed (0)
  3. maven-model/src/test/java/org/apache/maven/model/v4/Xpp3DomPerfTest.java

    /**
     * <p>Xpp3DomPerfTest class.</p>
     */
    @BenchmarkMode(Mode.AverageTime)
    @OutputTimeUnit(TimeUnit.MILLISECONDS)
    @Warmup(iterations = 3)
    @Measurement(time = 10)
    public class Xpp3DomPerfTest {
        @State(Scope.Benchmark)
        public static class AdditionState {
            List<Path> poms;
    
            @Setup(Level.Iteration)
            public void setUp() throws IOException {
                Path userHome = Paths.get(System.getProperty("user.home"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:14:01 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

    limitations under the License.
    ==============================================================================*/
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "base/logging.h"
    #include "testing/base/public/benchmark.h"
    #include <gtest/gtest.h>
    #include "absl/log/check.h"
    #include "unsupported/Eigen/CXX11/Tensor"  // from @eigen_archive
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/resource_loader.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/config_test.go

    					t.Fatalf("model.MostSpecificHostMatch(%q, %v) = %v, %v, %t; want: %v", tt.needle, tt.in, actual, value, found, tt.want)
    				}
    			}
    		})
    	}
    }
    
    func BenchmarkMostSpecificHostMatch(b *testing.B) {
    	benchmarks := []struct {
    		name             string
    		needle           host.Name
    		baseHost         string
    		hosts            []host.Name
    		specificHostsMap sets.Set[host.Name]
    		wildcardHostsMap sets.Set[host.Name]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
  6. guava-tests/pom.xml

            <version>1.7</version>
            <executions>
              <execution>
                <id>add-benchmark-sources</id>
                <phase>generate-test-sources</phase>
                <goals><goal>add-test-source</goal></goals>
                <configuration>
                  <sources>
                    <source>benchmark</source>
                  </sources>
                </configuration>
              </execution>
            </executions>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 19:01:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/main.go

    		*flagBuildid = "go-openbsd"
    	}
    
    	// enable benchmarking
    	var bench *benchmark.Metrics
    	if len(*benchmarkFlag) != 0 {
    		if *benchmarkFlag == "mem" {
    			bench = benchmark.New(benchmark.GC, *benchmarkFileFlag)
    		} else if *benchmarkFlag == "cpu" {
    			bench = benchmark.New(benchmark.NoGC, *benchmarkFileFlag)
    		} else {
    			Errorf(nil, "unknown benchmark flag: %q", *benchmarkFlag)
    			usage()
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/build.gradle.kts

        id("gradlebuild.jmh")
    }
    
    description = "This project contains various native operating system integration utilities"
    
    gradlebuildJava.usedInWorkers()
    
    /**
     * Use Java 8 compatibility for JMH benchmarks
     */
    tasks.named<JavaCompile>("jmhCompileGeneratedClasses") {
        options.release = 8
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":files"))
    
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. src/unicode/letter_test.go

    			tab := tab
    			max := n*5 + 20
    			for i := 0; i < b.N; i++ {
    				for j := 0; j <= max; j++ {
    					binary(tab, uint16(j))
    				}
    			}
    		}
    		bmlinear := testing.Benchmark(blinear)
    		bmbinary := testing.Benchmark(bbinary)
    		fmt.Printf("n=%d: linear=%d binary=%d\n", n, bmlinear.NsPerOp(), bmbinary.NsPerOp())
    		return bmlinear.NsPerOp()*100 > bmbinary.NsPerOp()*110
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  10. guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.base;
    
    import com.google.caliper.Benchmark;
    import com.google.caliper.Param;
    import java.util.Arrays;
    import java.util.Collections;
    
    /**
     * Some microbenchmarks for the {@link MoreObjects.ToStringHelper} class.
     *
     * @author Osvaldo Doederlein
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top