Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,771 for testLang (0.39 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. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

    import com.google.common.collect.testing.features.CollectionSize;
    import com.google.common.collect.testing.features.Feature;
    import com.google.common.collect.testing.features.MapFeature;
    import com.google.common.collect.testing.testers.MapClearTester;
    import com.google.common.collect.testing.testers.MapComputeIfAbsentTester;
    import com.google.common.collect.testing.testers.MapComputeIfPresentTester;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/runtime/map_benchmark_test.go

    }
    
    func BenchmarkMapStringKeysEight_16(b *testing.B) { benchmarkMapStringKeysEight(b, 16) }
    func BenchmarkMapStringKeysEight_32(b *testing.B) { benchmarkMapStringKeysEight(b, 32) }
    func BenchmarkMapStringKeysEight_64(b *testing.B) { benchmarkMapStringKeysEight(b, 64) }
    func BenchmarkMapStringKeysEight_1M(b *testing.B) { benchmarkMapStringKeysEight(b, 1<<20) }
    
    func benchmarkMapStringKeysEight(b *testing.B, keySize int) {
    	m := make(map[string]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 16:41:16 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top