Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 7,967 for testLang (0.14 sec)

  1. src/math/all_test.go

    	x := 0.0
    	for i := 0; i < b.N; i++ {
    		x = Erf(.5)
    	}
    	GlobalF = x
    }
    
    func BenchmarkErfc(b *testing.B) {
    	x := 0.0
    	for i := 0; i < b.N; i++ {
    		x = Erfc(.5)
    	}
    	GlobalF = x
    }
    
    func BenchmarkErfinv(b *testing.B) {
    	x := 0.0
    	for i := 0; i < b.N; i++ {
    		x = Erfinv(.5)
    	}
    	GlobalF = x
    }
    
    func BenchmarkErfcinv(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  2. src/math/cmplx/cmath_test.go

    func BenchmarkAcosh(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Acosh(complex(2.5, 3.5))
    	}
    }
    func BenchmarkAsin(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Asin(complex(2.5, 3.5))
    	}
    }
    func BenchmarkAsinh(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Asinh(complex(2.5, 3.5))
    	}
    }
    func BenchmarkAtan(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Atan(complex(2.5, 3.5))
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val bytebuddy = "net.bytebuddy:byte-buddy"
        val bytebuddyAgent = "net.bytebuddy:byte-buddy-agent"
        val cglib = "cglib:cglib"
        val compileTesting = "com.google.testing.compile:compile-testing"
        val equalsverifier = "nl.jqno.equalsverifier:equalsverifier"
        val hikariCP = "com.zaxxer:HikariCP"
        val guice = "com.google.inject:guice"
        val httpmime = "org.apache.httpcomponents:httpmime"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. operator/cmd/mesh/manifest-generate_test.go

    func TestManifestGenerateHelmValues(t *testing.T) {
    	runTestGroup(t, testGroup{
    		{
    			desc:       "helm_values_enablement",
    			diffSelect: "Deployment:*:istio-egressgateway, Service:*:istio-egressgateway",
    		},
    	})
    }
    
    func TestManifestGenerateOrdered(t *testing.T) {
    	// Since this is testing the special case of stable YAML output order, it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  5. src/sync/map_bench_test.go

    import (
    	"fmt"
    	"reflect"
    	"sync"
    	"sync/atomic"
    	"testing"
    )
    
    type bench struct {
    	setup func(*testing.B, mapInterface)
    	perG  func(b *testing.B, pb *testing.PB, i int, m mapInterface)
    }
    
    func benchMap(b *testing.B, bench bench) {
    	for _, m := range [...]mapInterface{&DeepCopyMap{}, &RWMutexMap{}, &sync.Map{}} {
    		b.Run(fmt.Sprintf("%T", m), func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestFailureProgressEventCrossVersionTest.groovy

            assertionFailures[1].causes[1].actual == 'myOtherActual'
        }
    
        def "Emits test failure events for TestNG tests"() {
            setup:
            buildFile << """
                apply plugin: 'java'
                ${RepoScriptBlockUtil.mavenCentralRepository()}
                testing {
                    suites {
                        test {
                            useTestNG('7.4.0')
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz.txt

    package panic_fuzz
    
    import "testing"
    
    func FuzzPanic(f *testing.F) {
        panic(nil)
    }
    
    -- success_fuzz_test.go --
    package success_fuzz
    
    import "testing"
    
    func Fuzz(f *testing.F) {
        f.Fuzz(func (*testing.T, []byte) {})
    }
    
    -- skipped_fuzz_test.go --
    package skipped_fuzz
    
    import "testing"
    
    func Fuzz(f *testing.F) {
        f.Skip()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. src/go/doc/comment/testdata/linklist2.txt

      - [testing.T](https://pkg.go.dev/testing#T) is one doc link.
    
      - So is [testing.M](https://pkg.go.dev/testing#M).
    
      - So is [testing.B](https://pkg.go.dev/testing#B). This is the same list paragraph.
    
        There is [testing.PB](https://pkg.go.dev/testing#PB) in this list item, too!
    -- html --
    <p>Did you know?
    <ul>
    <li><p><a href="https://pkg.go.dev/testing#T">testing.T</a> is one doc link.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_beta.yaml

      - istio-system/testing-gateway-01-test-01
      hosts:
      - testing-01.com # Expected: no validation error since this host exists
      http:
      - match:
        - uri:
            prefix: /
        route:
        - destination:
            host: ratings
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: testing-service-02-test-01
      namespace: default
    spec:
      gateways:
      - istio-system/testing-gateway-01-test-01
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 11:29:57 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/bench_test.go

    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			atomic.Xadd(ptr, 1)
    		}
    	})
    }
    
    func BenchmarkXadd64(b *testing.B) {
    	var x uint64
    	ptr := &x
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			atomic.Xadd64(ptr, 1)
    		}
    	})
    }
    
    func BenchmarkCas(b *testing.B) {
    	var x uint32
    	x = 1
    	ptr := &x
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top