Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 222 for cmdtest (0.37 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/PackageTestResults.java

        public Collection<ClassTestResults> getClasses() {
            return classes.values();
        }
    
        public TestResult addTest(long classId, String className, String testName, long duration) {
            return addTest(classId, className, className, testName, testName, duration);
        }
    
        public TestResult addTest(long classId, String className, String classDisplayName, String testName, String testDisplayName, long duration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/AllTestResultsTest.groovy

    import spock.lang.Specification
    
    class AllTestResultsTest extends Specification {
        final AllTestResults results = new AllTestResults()
    
        def addsTest() {
            when:
            def test = results.addTest(1, 'org.gradle.Test', 'test', 90)
    
            then:
            test.name == 'test'
            test.classResults.name == 'org.gradle.Test'
            test.classResults.packageResults.name == 'org.gradle'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_test.go

    	}
    	p.PodSandboxStatus.Id = strings.ReplaceAll(string(uuid.NewUUID()), "-", "")
    	return p
    }
    
    func makeFakeContainer(sandbox *critest.FakePodSandbox, name string, attempt uint32, terminated bool) *critest.FakeContainer {
    	sandboxID := sandbox.PodSandboxStatus.Id
    	c := &critest.FakeContainer{
    		SandboxID: sandboxID,
    		ContainerStatus: runtimeapi.ContainerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/ClassTestResults.java

        }
    
        public Collection<TestResult> getTestResults() {
            return results;
        }
    
        public TestResult addTest(String testName, String testDisplayName, long duration) {
            TestResult test = new TestResult(testName, testDisplayName, duration, this);
            results.add(test);
            return addTest(test);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/teststdio/stdio_test.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package stdio_test
    
    import (
    	"bytes"
    	"cmd/cgo/internal/cgotest"
    	"internal/testenv"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    func TestMain(m *testing.M) {
    	log.SetFlags(log.Lshortfile)
    	os.Exit(testMain(m))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 20:56:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/backdoor.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgotest
    
    import _ "unsafe"
    
    //go:linkname lockedOSThread runtime.lockedOSThread
    //extern runtime_lockedOSThread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 307 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/linux_ppc64le_test.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ppc64le && linux && cgo
    
    package cgotest
    
    import "testing"
    
    func TestPPC64CallStubs(t *testing.T) {
    	testPPC64CallStubs(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 296 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/seh_windows_test.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build cgo && windows && !internal
    
    package cgotest
    
    import "testing"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 06:52:00 UTC 2024
    - 307 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue8517.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !windows
    
    package cgotest
    
    import "testing"
    
    func test8517(t *testing.T) {
    	t.Skip("skipping windows only test")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 286 bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/CompactHashSetTest.java

                CollectionFeature.SUPPORTS_ADD,
                CollectionFeature.SUPPORTS_REMOVE);
    
        TestSuite suite = new TestSuite();
        suite.addTestSuite(CompactHashSetTest.class);
        suite.addTest(
            SetTestSuiteBuilder.using(
                    new TestStringSetGenerator() {
                      @Override
                      protected Set<String> create(String[] elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top