Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,910 for testLang (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[test_kit]]
    = Testing Build Logic with TestKit
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.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. 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)
  4. 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)
  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/runtime/slice_test.go

    package runtime_test
    
    import (
    	"fmt"
    	"testing"
    )
    
    const N = 20
    
    func BenchmarkMakeSliceCopy(b *testing.B) {
    	const length = 32
    	var bytes = make([]byte, 8*length)
    	var ints = make([]int, length)
    	var ptrs = make([]*byte, length)
    	b.Run("mallocmove", func(b *testing.B) {
    		b.Run("Byte", func(b *testing.B) {
    			var x []byte
    			for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 09:45:44 UTC 2020
    - 10.3K bytes
    - Viewed (0)
  9. src/testing/testing_test.go

    var testingTrueInPackageVarInit = testing.Testing()
    
    // init is part of TestTesting.
    func init() {
    	if testing.Testing() {
    		testingTrueInInit = true
    	}
    }
    
    var testingProg = `
    package main
    
    import (
    	"fmt"
    	"testing"
    )
    
    func main() {
    	fmt.Println(testing.Testing())
    }
    `
    
    func TestTesting(t *testing.T) {
    	if !testing.Testing() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. src/fmt/scan_test.go

    		}
    	}
    }
    
    func TestScan(t *testing.T) {
    	for _, r := range readers {
    		t.Run(r.name, func(t *testing.T) {
    			testScan(t, r.f, Fscan)
    		})
    	}
    }
    
    func TestScanln(t *testing.T) {
    	for _, r := range readers {
    		t.Run(r.name, func(t *testing.T) {
    			testScan(t, r.f, Fscanln)
    		})
    	}
    }
    
    func TestScanf(t *testing.T) {
    	for _, test := range scanfTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
Back to top