Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 165 for xtest (0.04 sec)

  1. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *
       * <p>In all cases, if {@code C} needs custom logic for testing serialization, you can add an
       * explicit {@code testSerializable()} test in the corresponding {@code CTest} class, and {@code
       * C} will be excluded from automated serialization test performed by this method.
       */
      @Test
      public void testSerializable() throws Exception {
        // TODO: when we use @BeforeClass, we can pay the cost of class path scanning only once.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. src/cmd/dist/buildtool.go

    	".",
    	"_",
    	"#",
    }
    
    // File suffixes that use build tags introduced since Go 1.17.
    // These must not be copied into the bootstrap build directory.
    // Also ignore test files.
    var ignoreSuffixes = []string{
    	"_test.s",
    	"_test.go",
    	// Skip PGO profile. No need to build toolchain1 compiler
    	// with PGO. And as it is not a text file the import path
    	// rewrite will break it.
    	".pgo",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/read.go

    		if pkg == "documentation" {
    			p.IgnoredGoFiles = append(p.IgnoredGoFiles, name)
    			continue
    		}
    		isTest := strings.HasSuffix(name, "_test.go")
    		isXTest := false
    		if isTest && strings.HasSuffix(tf.pkgName(), "_test") && p.Name != tf.pkgName() {
    			isXTest = true
    			pkg = pkg[:len(pkg)-len("_test")]
    		}
    
    		if !isTest && tf.binaryOnly() {
    			p.BinaryOnly = true
    		}
    
    		if p.Name == "" {
    			p.Name = pkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/BUILD

            "//tensorflow/core/protobuf/tpu:compile_metadata_proto_cc",
            "//tensorflow/core/tpu/kernels:tpu_compile_op_support",
            "@com_google_absl//absl/strings:str_format",
            "@com_google_googletest//:gtest",
            "@local_tsl//tsl/lib/monitoring:test_utils",
            "@local_tsl//tsl/platform:statusor",
            "@local_xla//xla/client:client_library",
            "@local_xla//xla/stream_executor:platform_manager",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/go/doc/example.go

    }
    
    // isTest tells whether name looks like a test, example, fuzz test, or
    // benchmark. It is a Test (say) if there is a character after Test that is not
    // a lower-case letter. (We don't want Testiness.)
    func isTest(name, prefix string) bool {
    	if !strings.HasPrefix(name, prefix) {
    		return false
    	}
    	if len(name) == len(prefix) { // "Test" is ok
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/BUILD

            "//tensorflow/core/protobuf/tpu:compile_metadata_proto_cc",
            "//tensorflow/core/tpu/kernels:tpu_compile_op_support",
            "//tensorflow/core/tpu/kernels/xla:host_compute_ops",
            "@com_google_googletest//:gtest",
            "@local_tsl//tsl/lib/core:status_test_util",
            "@local_tsl//tsl/lib/monitoring:test_utils",
            "@local_tsl//tsl/platform:errors",
            "@local_tsl//tsl/platform:statusor",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints_test.cc

    #include "tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h"
    
    #include <cstdint>
    #include <optional>
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "absl/status/status.h"
    #include "absl/strings/string_view.h"
    #include "llvm/Support/MathExtras.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. build/root/Makefile

    #   KUBE_TEST_ARGS: Arguments to pass to the resulting go test invocation.
    #
    # Example:
    #   make test-integration
    #   make test-integration WHAT=./test/integration/kubelet GOFLAGS="-v -coverpkg=./pkg/kubelet/..." KUBE_COVER="y"
    #   make test-integration WHAT=./test/integration/pods GOFLAGS="-v" KUBE_TEST_ARGS='-run ^TestPodUpdateActiveDeadlineSeconds$$'
    endef
    .PHONY: test-integration
    ifeq ($(PRINT_HELP),y)
    test-integration:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h"
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "absl/algorithm/container.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/SmallVector.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. hack/golangci.yaml

          text: should not be used because managedFields was removed
          path: _test.go$
    
        # TODO(oscr) Remove these excluded directories and fix findings. Due to large amount of findings in different components
        # with different owners it's hard to fix everything in a single pr. This will therefore be done in multiple prs.
        - path: (pkg/volume/*|test/*|azure/*|pkg/cmd/wait*|request/bearertoken/*|metrics/*|filters/*)
          linters:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top