Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 493 for u8test (0.1 sec)

  1. src/cmd/go/testdata/script/work_gowork.txt

    ! go list a # require absolute path
    ! stderr panic
    env GOWORK=doesnotexist
    ! go list a
    ! stderr panic
    
    env GOWORK=$GOPATH/src/stop.work
    go list -n a
    go build -n a
    go test -n a
    
    -- stop.work --
    go 1.18
    
    use ./a
    -- a/a.go --
    package a
    -- a/a_test.go --
    package a
    -- a/go.mod --
    module a
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 15:58:47 UTC 2022
    - 314 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.test.xctest.tasks.XCTest.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. test/ken/shift.go

    }
    
    func
    testu(u uint, t1,t2,t3 int) {
    	n := index(t1,t2,t3);
    	if u != uans[n] {
    		print("utest ", t1,t2,t3,pass,
    			" is ", u, " sb ", uans[n], "\n");
    	}
    }
    
    func
    main() {
    	var i int;
    	var u,c uint;
    
    	/*
    	 * test constant evaluations
    	 */
    	pass = "con";	// constant part
    
    	testi( int(1234) <<    0, 0,0,0);
    	testi( int(1234) >>    0, 0,0,1);
    	testi( int(1234) <<    5, 0,1,0);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    # (a diamond-shape import graph).
    -- go.mod --
    module test
    go 1.20
    -- a/a.go --
    package main
    import _ "test/dep"
    import _ "test/dep2"
    func main() {}
    -- a/a_test.go --
    package main
    import "testing"
    import _ "test/testdep"
    func TestA(*testing.T) {}
    -- a/default.pgo --
    -- b/b.go --
    package main
    import _ "test/dep"
    import _ "test/dep2"
    func main() {}
    -- b/b_test.go --
    package main
    import "testing"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      static bool Create(const char* statement, const RE* regex,
                         const char* file, int line, DeathTest** test);
      DeathTest();
      virtual ~DeathTest() { }
    
      // A helper class that aborts a death test when it's deleted.
      class ReturnSentinel {
       public:
        explicit ReturnSentinel(DeathTest* test) : test_(test) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/vet.txt

    stderr 'Printf'
    
    # With flags off
    go vet -printf=false m/vetpkg
    ! stderr .
    
    # With only test files (tests issue #23395)
    go vet m/onlytest
    ! stderr .
    
    # With only cgo files (tests issue #24193)
    [!cgo] skip
    [short] skip
    go vet m/onlycgo
    ! stderr .
    
    -- go.mod --
    module m
    
    go 1.16
    -- vetpkg/a_test.go --
    package p_test
    -- vetpkg/b.go --
    package p
    
    import "fmt"
    
    func f() {
    	fmt.Printf("%d")
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 799 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    }
    
    #endif  // 0
    
    #include "gtest/internal/gtest-port.h"
    
    #if !GTEST_OS_SYMBIAN
    # include <utility>
    #endif
    
    // scripts/fuse_gtest.py depends on gtest's own header being #included
    // *unconditionally*.  Therefore these #includes cannot be moved
    // inside #if GTEST_HAS_PARAM_TEST.
    #include "gtest/internal/gtest-internal.h"
    #include "gtest/internal/gtest-param-util.h"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      static bool Create(const char* statement, const RE* regex,
                         const char* file, int line, DeathTest** test);
      DeathTest();
      virtual ~DeathTest() { }
    
      // A helper class that aborts a death test when it's deleted.
      class ReturnSentinel {
       public:
        explicit ReturnSentinel(DeathTest* test) : test_(test) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cover_blank_func_decl.txt

    [short] skip
    go test -cover coverblank
    stdout 'coverage: 100.0% of statements'
    
    
    -- go.mod --
    module coverblank
    
    go 1.16
    -- a.go --
    package coverblank
    
    func _() {
    	println("unreachable")
    }
    
    type X int
    
    func (x X) Print() {
    	println(x)
    }
    
    func (x X) _() {
    	println("unreachable")
    }
    
    -- a_test.go --
    package coverblank
    
    import "testing"
    
    func TestX(t *testing.T) {
    	var x X
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 385 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testshared/testdata/issue30768/x_test.go

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 487 bytes
    - Viewed (0)
Back to top