Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,629 for testLang (0.14 sec)

  1. src/cmd/cgo/internal/test/cgo_linux_test.go

    //go:build cgo
    
    package cgotest
    
    import (
    	"runtime"
    	"testing"
    )
    
    func TestSetgid(t *testing.T) {
    	if runtime.GOOS == "android" {
    		t.Skip("unsupported on Android")
    	}
    	testSetgid(t)
    }
    
    func TestSetgidStress(t *testing.T) {
    	if runtime.GOOS == "android" {
    		t.Skip("unsupported on Android")
    	}
    	testSetgidStress(t)
    }
    
    func Test1435(t *testing.T) { test1435(t) }
    func Test6997(t *testing.T) { test6997(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:01 UTC 2024
    - 662 bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/ListTestSuiteBuilder.java

    import com.google.common.collect.testing.features.Feature;
    import com.google.common.collect.testing.testers.CollectionSerializationEqualTester;
    import com.google.common.collect.testing.testers.ListAddAllAtIndexTester;
    import com.google.common.collect.testing.testers.ListAddAllTester;
    import com.google.common.collect.testing.testers.ListAddAtIndexTester;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. 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)
  4. cmd/kubeadm/app/util/certs/util.go

    	"crypto/rsa"
    	"crypto/x509"
    	"net"
    	"path/filepath"
    	"testing"
    	"time"
    
    	certutil "k8s.io/client-go/util/cert"
    	"k8s.io/client-go/util/keyutil"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil"
    )
    
    // SetupCertificateAuthority is a utility function for kubeadm testing that creates a
    // CertificateAuthority cert/key pair
    func SetupCertificateAuthority(t *testing.T) (*x509.Certificate, crypto.Signer) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionIteratorTester.java

     * limitations under the License.
     */
    
    package com.google.common.collect.testing.testers;
    
    import static com.google.common.collect.testing.Helpers.mapEntry;
    import static com.google.common.collect.testing.IteratorFeature.MODIFIABLE;
    import static com.google.common.collect.testing.IteratorFeature.UNMODIFIABLE;
    import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_VALUES;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/crypto/ecdsa/ecdsa_s390x_test.go

    package ecdsa
    
    import (
    	"crypto/elliptic"
    	"testing"
    )
    
    func TestNoAsm(t *testing.T) {
    	testingDisableKDSA = true
    	defer func() { testingDisableKDSA = false }()
    
    	curves := [...]elliptic.Curve{
    		elliptic.P256(),
    		elliptic.P384(),
    		elliptic.P521(),
    	}
    
    	for _, curve := range curves {
    		name := curve.Params().Name
    		t.Run(name, func(t *testing.T) { testKeyGeneration(t, curve) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 834 bytes
    - Viewed (0)
  7. 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)
  8. guava-testlib/src/com/google/common/collect/testing/testers/ListListIteratorTester.java

     */
    
    package com.google.common.collect.testing.testers;
    
    import static com.google.common.collect.testing.IteratorFeature.MODIFIABLE;
    import static com.google.common.collect.testing.IteratorFeature.UNMODIFIABLE;
    import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_REMOVE;
    import static com.google.common.collect.testing.features.ListFeature.SUPPORTS_ADD_WITH_INDEX;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. 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)
  10. src/strings/builder_test.go

    	b.Run("1Write_NoGrow", func(b *testing.B) {
    		b.ReportAllocs()
    		f(b, 1, false)
    	})
    	b.Run("3Write_NoGrow", func(b *testing.B) {
    		b.ReportAllocs()
    		f(b, 3, false)
    	})
    	b.Run("3Write_Grow", func(b *testing.B) {
    		b.ReportAllocs()
    		f(b, 3, true)
    	})
    }
    
    func BenchmarkBuildString_Builder(b *testing.B) {
    	benchmarkBuilder(b, func(b *testing.B, numWrite int, grow bool) {
    		for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top