Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 962 for testOrg (0.21 sec)

  1. .teamcity/test-buckets.json

    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"testing-jvm",
    					"configuration-cache",
    					"precondition-tester",
    					"model-groovy",
    					"toolchains-jvm",
    					"resources",
    					"execution",
    					"resources-http",
    					"internal-performance-testing",
    					"internal-integ-testing",
    					"build-cache-spi"
    				]
    			},
    			{
    				"parallelizationMethod":{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/build.gradle.kts

    }
    
    description = """JVM-specific testing functionality, including the Test type and support for configuring options for and detecting
    tests written in various JVM testing frameworks. This project "extends" the testing-base project by sub-typing many
    of its abstractions with JVM-specific abstractions or implementations.
    
    This project is a implementation dependency of many other testing-related subprojects in the Gradle build, and is a necessary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/util/smallset/smallset_test.go

    		b.Run("New/1", func(b *testing.B) {
    			for range b.N {
    				_ = smallset.New("a")
    			}
    		})
    		b.Run("New/1000", func(b *testing.B) {
    			for range b.N {
    				_ = smallset.New(items1000...)
    			}
    		})
    		b.Run("NewPresorted/1000", func(b *testing.B) {
    			for range b.N {
    				_ = smallset.NewPresorted(items1000...)
    			}
    		})
    		b.Run("Contains/1000", func(b *testing.B) {
    			for range b.N {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. src/sync/pool_test.go

    	})
    	t.Run("Put", func(t *testing.T) {
    		defer catch()
    		p.Put("a")
    		t.Error("should have panicked already")
    	})
    }
    
    func BenchmarkPool(b *testing.B) {
    	var p Pool
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			p.Put(1)
    			p.Get()
    		}
    	})
    }
    
    func BenchmarkPoolOverflow(b *testing.B) {
    	var p Pool
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testplugin/plugin_test.go

    	}
    	fmt.Print(s)
    }
    
    func testMain(m *testing.M) int {
    	if testing.Short() && os.Getenv("GO_BUILDER_NAME") == "" {
    		globalSkip = func(t *testing.T) { t.Skip("short mode and $GO_BUILDER_NAME not set") }
    		return m.Run()
    	}
    	if !platform.BuildModeSupported(runtime.Compiler, "plugin", runtime.GOOS, runtime.GOARCH) {
    		globalSkip = func(t *testing.T) { t.Skip("plugin build mode not supported") }
    		return m.Run()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. .github/CODEOWNERS

    subprojects/internal-build-reports/         @gradle/bt-developer-productivity
    testing/internal-architecture-testing/      @gradle/bt-developer-productivity
    testing/internal-integ-testing/             @gradle/bt-developer-productivity
    testing/internal-performance-testing/       @gradle/bt-developer-productivity
    testing/internal-testing/                   @gradle/bt-developer-productivity
    
    # Release coordination
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. cmd/storage-datatypes_gen_test.go

    package cmd
    
    // Code generated by github.com/tinylib/msgp DO NOT EDIT.
    
    import (
    	"bytes"
    	"testing"
    
    	"github.com/tinylib/msgp/msgp"
    )
    
    func TestMarshalUnmarshalBaseOptions(t *testing.T) {
    	v := BaseOptions{}
    	bts, err := v.MarshalMsg(nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	left, err := v.UnmarshalMsg(bts)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 62.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    		}
    	}
    }
    
    func TestCreate(t *testing.T) {
    	ctx, store, etcdClient := testSetup(t)
    	storagetesting.RunTestCreate(ctx, t, store, checkStorageInvariants(etcdClient, store.codec))
    }
    
    func TestCreateWithTTL(t *testing.T) {
    	ctx, store, _ := testSetup(t)
    	storagetesting.RunTestCreateWithTTL(ctx, t, store)
    }
    
    func TestCreateWithKeyExist(t *testing.T) {
    	ctx, store, _ := testSetup(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. src/math/rand/rand_test.go

    			}
    		})
    	}
    }
    
    // Benchmarks
    
    func BenchmarkInt63Threadsafe(b *testing.B) {
    	for n := b.N; n > 0; n-- {
    		Int63()
    	}
    }
    
    func BenchmarkInt63ThreadsafeParallel(b *testing.B) {
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			Int63()
    		}
    	})
    }
    
    func BenchmarkInt63Unthreadsafe(b *testing.B) {
    	r := New(NewSource(1))
    	for n := b.N; n > 0; n-- {
    		r.Int63()
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. src/reflect/iter_test.go

    import (
    	"iter"
    	"maps"
    	. "reflect"
    	"testing"
    )
    
    func TestValueSeq(t *testing.T) {
    	m := map[string]int{
    		"1": 1,
    		"2": 2,
    		"3": 3,
    		"4": 4,
    	}
    	c := make(chan int, 3)
    	for i := range 3 {
    		c <- i
    	}
    	close(c)
    	tests := []struct {
    		name  string
    		val   Value
    		check func(*testing.T, iter.Seq[Value])
    	}{
    		{"int", ValueOf(4), func(t *testing.T, s iter.Seq[Value]) {
    			i := int64(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 14:27:54 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top