Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for testcover (0.2 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

            // For example, when using PTS/TD for running this test, the JUnit Platform Launcher classes from the GE plugin take precedence
            toolingApi.requireDaemons()
            testCode()
        }
    
        boolean supportsEfficientClassFiltering() {
            return getTargetVersion() >= GradleVersion.version('4.7')
        }
    
        void launchTests(Collection<TestOperationDescriptor> testsToLaunch) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/util_test.go

    	newEtcdTestStorage := func(t *testing.T, prefix string) (*etcd3testing.EtcdTestServer, storage.Interface) {
    		server, _ := etcd3testing.NewUnsecuredEtcd3TestClientServer(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 11 12:07:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/testers/NavigableMapNavigationTester.java

      public void testPollFirstUnsupported() {
        assertThrows(UnsupportedOperationException.class, () -> navigableMap.pollFirstEntry());
      }
    
      @CollectionSize.Require(SEVERAL)
      public void testLower() {
        resetWithHole();
        assertEquals(null, navigableMap.lowerEntry(a.getKey()));
        assertEquals(null, navigableMap.lowerKey(a.getKey()));
        assertEquals(a, navigableMap.lowerEntry(b.getKey()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/testers/NavigableMapNavigationTester.java

      public void testPollFirstUnsupported() {
        assertThrows(UnsupportedOperationException.class, () -> navigableMap.pollFirstEntry());
      }
    
      @CollectionSize.Require(SEVERAL)
      public void testLower() {
        resetWithHole();
        assertEquals(null, navigableMap.lowerEntry(a.getKey()));
        assertEquals(null, navigableMap.lowerKey(a.getKey()));
        assertEquals(a, navigableMap.lowerEntry(b.getKey()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite_test.go

    package ssa
    
    import "testing"
    
    // We generate memmove for copy(x[1:], x[:]), however we may change it to OpMove,
    // because size is known. Check that OpMove is alias-safe, or we did call memmove.
    func TestMove(t *testing.T) {
    	x := [...]byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40}
    	copy(x[1:], x[:])
    	for i := 1; i < len(x); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 21:57:02 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  6. plugin/pkg/admission/security/podsecurity/admission_test.go

    	"k8s.io/kubernetes/pkg/apis/core"
    	v1 "k8s.io/kubernetes/pkg/apis/core/v1"
    	podsecurityadmission "k8s.io/pod-security-admission/admission"
    	"k8s.io/utils/pointer"
    	"sigs.k8s.io/yaml"
    )
    
    func TestConvert(t *testing.T) {
    	extractor := podsecurityadmission.DefaultPodSpecExtractor{}
    	internalTypes := map[schema.GroupResource]runtime.Object{
    		core.Resource("pods"):                   &core.Pod{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 15 01:29:47 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  7. test/typeparam/list2.go

    		panic(fmt.Sprintf("e.value = %d, want 1", e.Value))
    	}
    	if e.Next() != nil {
    		panic(fmt.Sprintf("e.Next() != nil"))
    	}
    	if e.Prev() != nil {
    		panic(fmt.Sprintf("e.Prev() != nil"))
    	}
    }
    
    func TestMove() {
    	l := _New[int]()
    	e1 := l.PushBack(1)
    	e2 := l.PushBack(2)
    	e3 := l.PushBack(3)
    	e4 := l.PushBack(4)
    
    	l.MoveAfter(e3, e3)
    	checkListPointers(l, []*(_Element[int]){e1, e2, e3, e4})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/container/list/list_test.go

    	if e.Value != 1 {
    		t.Errorf("e.value = %d, want 1", e.Value)
    	}
    	if e.Next() != nil {
    		t.Errorf("e.Next() != nil")
    	}
    	if e.Prev() != nil {
    		t.Errorf("e.Prev() != nil")
    	}
    }
    
    func TestMove(t *testing.T) {
    	l := New()
    	e1 := l.PushBack(1)
    	e2 := l.PushBack(2)
    	e3 := l.PushBack(3)
    	e4 := l.PushBack(4)
    
    	l.MoveAfter(e3, e3)
    	checkListPointers(t, l, []*Element{e1, e2, e3, e4})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    			c.Fuzz(obj)
    
    			// Find a codec for converting the object to raw bytes.  This is necessary for the
    			// api version and kind to be correctly set be serialization.
    			var codec = apitesting.TestCodec(codecs, metav1.SchemeGroupVersion)
    
    			// Convert the object to raw bytes
    			bytes, err := runtime.Encode(codec, obj)
    			if err != nil {
    				panic(fmt.Sprintf("Failed to encode object: %v", err))
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/test/apis_meta_v1_unstructed_unstructure_test.go

    		"spec":{
    			"containers":[{"name":"container","image":"container"}],
    			"activeDeadlineSeconds":1000030003
    		}
    	}`)
    
    	pod := &testapigroup.Carp{}
    
    	_, codecs := TestScheme()
    	codec := apitesting.TestCodec(codecs, schema.GroupVersion{Group: "", Version: runtime.APIVersionInternal})
    
    	err := runtime.DecodeInto(codec, originalJSON, pod)
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 17.3K bytes
    - Viewed (0)
Back to top