Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 493 for u8test (0.1 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    #ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    #define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    
    #include <iosfwd>
    #include <vector>
    #include "gtest/internal/gtest-internal.h"
    #include "gtest/internal/gtest-string.h"
    
    namespace testing {
    
    // A copyable object representing the result of a test part (i.e. an
    // assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()).
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    #ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    #define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    
    #include <iosfwd>
    #include <vector>
    #include "gtest/internal/gtest-internal.h"
    #include "gtest/internal/gtest-string.h"
    
    namespace testing {
    
    // A copyable object representing the result of a test part (i.e. an
    // assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()).
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_issue60313.txt

    module example.net/a
    
    go 1.21
    
    require example.net/outer/inner v0.1.0
    -- a/a.go --
    package a
    -- a/a_test.go --
    package a_test
    
    import _ "example.net/outer/inner"
    -- b/go.mod --
    module example.net/b
    
    go 1.21
    
    require example.net/outer v0.1.0
    -- b/b.go --
    package b
    -- b/b_test.go --
    package b_test
    
    import _ "example.net/outer/inner"
    -- inner/go.mod --
    module example.net/outer/inner
    
    go 1.21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 19:42:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //
    // The Google C++ Testing Framework (Google Test)
    //
    // This header file defines the public API for death tests.  It is
    // #included by gtest.h so a user doesn't need to include this
    // directly.
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
    #define GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
    
    #include "gtest/internal/gtest-death-test-internal.h"
    
    namespace testing {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    }
    
    #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: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    }
    
    #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
    - 74.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    #endif  // 0
    
    #include "gtest/internal/gtest-port.h"
    #include "gtest/internal/gtest-type-util.h"
    
    // Implements typed tests.
    
    #if GTEST_HAS_TYPED_TEST
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // Expands to the name of the typedef for the type parameters of the
    // given test case.
    # define GTEST_TYPE_PARAMS_(TestCaseName) gtest_type_params_##TestCaseName##_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

    CU_EXPORT CU_ErrorCode CU_basic_run_test(CU_pSuite pSuite, CU_pTest pTest);
    /**<
     *  Runs a single test in a specific suite in the basic interface.
     *  If pSuite or pTest is NULL, the function returns without
     *  taking any action.  The default CU_BasicRunMode is used unless
     *  it has been changed using CU_basic_set_mode.
     *
     *  @param pSuite The CU_Suite holding the CU_Test to run.
     *  @param pTest  The CU_Test to run.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_single_error.txt

    # go test ./... with a bad package should report the error once (#44624).
    ! go test ./...
    stderr -count=1 undefined
    
    -- go.mod --
    module example.com
    
    go 1.18
    -- a/a.go --
    package a
    
    import "example.com/b"
    -- b/b.go --
    package b
    
    var X = Y
    -- b/b_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 18 22:40:42 UTC 2021
    - 267 bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/echotest/run.go

    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/istio/ingress"
    )
    
    type (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top