Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,547 for xtest (0.13 sec)

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

    #include "gtest/gtest-message.h"
    #include "gtest/gtest-param-test.h"
    #include "gtest/gtest-printers.h"
    #include "gtest/gtest_prod.h"
    #include "gtest/gtest-test-part.h"
    #include "gtest/gtest-typed-test.h"
    
    // Depending on the platform, different string classes are available.
    // On Linux, in addition to ::std::string, Google also makes use of
    // class ::string, which has the same interface as ::std::string, but
    // has a different implementation.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    //
    // Author: ******@****.*** (Keith Ray)
    //
    // Google Test filepath utilities
    //
    // This header file declares classes and functions used internally by
    // Google Test.  They are subject to change without notice.
    //
    // This file is #included in <gtest/internal/gtest-internal.h>.
    // Do not include this header file separately!
    
    #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

    //
    // The Google C++ Testing Framework (Google Test)
    //
    // This header file declares the String class and functions used internally by
    // Google Test.  They are subject to change without notice. They should not used
    // by code external to Google Test.
    //
    // This header file is #included by <gtest/internal/gtest-internal.h>.
    // It should not be #included by other files.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. hack/verify-test-featuregates.sh

    # This script checks whether mutable global feature gate is invocated correctly
    # in `*_test.go` files.
    # Usage: `hack/verify-test-featuregates.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    cd "${KUBE_ROOT}"
    
    rc=0
    
    # find test files accessing the mutable global feature gate or interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. hack/make-rules/test.sh

              -o -path './test/e2e_kubeadm/*' \
              -o -path './test/integration/*' \
              -o -path './third_party/*' \
              -o -path './staging/*' \
              -o -path './vendor/*' \
            \) -prune \
          \) -name '*_test.go' -print0 | xargs -0n1 dirname | LC_ALL=C sort -u
    
        find ./staging -name '*_test.go' -not -path '*/test/integration/*' -prune -print0 | xargs -0n1 dirname | LC_ALL=C sort -u
      )
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. hack/make-rules/test-integration.sh

    KUBE_TEST_VMODULE=${KUBE_TEST_VMODULE:-""}
    
    kube::test::find_integration_test_dirs() {
      (
        cd "${KUBE_ROOT}"
        # The "./" syntax here produces Go-compatible package names.
        find ./test/integration/ -name '*_test.go' -print0 \
          | xargs -0n1 dirname \
          | LC_ALL=C sort -u
        find ./staging/src/k8s.io/apiextensions-apiserver/test/integration/ -name '*_test.go' -print0 \
          | xargs -0n1 dirname \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_std_vendor.txt

    [!compiler:gc] skip
    
    # 'go list' should report imports from _test.go in the TestImports field.
    go list -f '{{.TestImports}}'
    stdout net/http # from .TestImports
    
    # 'go list' should find standard-vendored packages.
    go list -f '{{.Dir}}' vendor/golang.org/x/net/http2/hpack
    stdout $GOROOT[/\\]src[/\\]vendor
    
    # 'go list -test' should report vendored transitive dependencies of _test.go
    # imports in the Deps field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    // *unconditionally*.  Therefore these #includes cannot be moved
    // inside #if GTEST_HAS_PARAM_TEST.
    #include "gtest/internal/gtest-internal.h"
    #include "gtest/internal/gtest-linked_ptr.h"
    #include "gtest/internal/gtest-port.h"
    #include "gtest/gtest-printers.h"
    
    #if GTEST_HAS_PARAM_TEST
    
    namespace testing {
    namespace internal {
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. hack/test-go.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script runs all *_test.go files. It is equivalent to `make test`.
    # Usage: `hack/test-go.sh` or `make test`.
    # Note: This script is a vestigial redirection. Please do not add "real" logic.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 00:27:40 UTC 2020
    - 1.2K bytes
    - Viewed (0)
Back to top