Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for cmdtest (0.22 sec)

  1. src/cmd/dist/main.go

    var commands = map[string]func(){
    	"banner":    cmdbanner,
    	"bootstrap": cmdbootstrap,
    	"clean":     cmdclean,
    	"env":       cmdenv,
    	"install":   cmdinstall,
    	"list":      cmdlist,
    	"test":      cmdtest,
    	"version":   cmdversion,
    }
    
    // main takes care of OS-specific startup and dispatches to xmain.
    func main() {
    	os.Setenv("TERM", "dumb") // disable escape codes in clang errors
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. src/cmp/cmp_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.
    
    package cmp_test
    
    import (
    	"cmp"
    	"fmt"
    	"math"
    	"slices"
    	"sort"
    	"strings"
    	"testing"
    	"unsafe"
    )
    
    var negzero = math.Copysign(0, -1)
    var nonnilptr uintptr = uintptr(unsafe.Pointer(&negzero))
    var nilptr uintptr = uintptr(unsafe.Pointer(nil))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/app/cmd_test.go

    Kuat <******@****.***> 1712361112 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 935 bytes
    - Viewed (0)
  4. maven-model/src/test/java/org/apache/maven/model/ScmTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@code Scm}.
     *
     */
    class ScmTest {
    
        @Test
        void testHashCodeNullSafe() {
            new Scm().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new Scm().equals(null));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/vm_test.go

    John Howard <******@****.***> 1705083636 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/nm/nm_test.go

    Ian Lance Taylor <******@****.***> 1679346539 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 23:32:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. tests/integration/pilot/vm_test.go

    John Howard <******@****.***> 1712613779 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. tensorflow/c/c_test.c

    A. Unique TensorFlower <******@****.***> 1713990157 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:50:35 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/go/build/testdata/directives/c_test.go

    Russ Cox <******@****.***> 1669746650 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 42 bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/CompositeTestResultsTest.groovy

        def formatsSuccessRateWhenAllTestsPass() {
            results.addTest(test())
    
            expect:
            results.successRate == 100
            results.formattedSuccessRate == '100%'
        }
    
        def formatsSuccessRateWhenSomeTestsFail() {
            def failed = results.addTest(test())
            results.failed(failed)
            results.addTest(test())
            results.addTest(test())
    
            expect:
            results.successRate == 66
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top