Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for src1 (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/BUILD

        default_visibility = [
            ":internal_visibility_allowlist_package",
            "//tensorflow:__pkg__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "tf_to_stablehlo",
        srcs = [
            "tf_to_stablehlo.cc",
        ],
        hdrs = [
            "tf_to_stablehlo.h",
        ],
        compatible_with = get_compatible_with_portable(),
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/python/BUILD

    )
    
    config_setting(
        name = "disable_mlir_config",
        flag_values = {":disable_mlir": "True"},
        visibility = ["//visibility:public"],
    )
    
    cc_library(
        name = "mlir",
        srcs = ["mlir.cc"],
        hdrs = ["mlir.h"],
        deps = [
            "@com_google_absl//absl/algorithm:container",
            "@com_google_absl//absl/container:flat_hash_set",
            "@com_google_absl//absl/container:inlined_vector",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 07 23:17:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/utils/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = [
            "//visibility:public",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "utils",
        srcs = [
            "utils.cc",
        ],
        hdrs = [
            "utils.h",
        ],
        deps = [
            "//tensorflow/compiler/mlir/lite:flatbuffer_translate_lib",
            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 03:47:03 UTC 2024
    - 989 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/examples/BUILD

        default_visibility = [
            "//visibility:public",
        ],
        licenses = ["notice"],  # Apache 2.0
    )
    
    cc_library(
        name = "example_hardware",
        srcs = ["example_hardware.cc"],
        hdrs = ["example_hardware.h"],
        deps = [
            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
            "//tensorflow/compiler/mlir/lite/experimental/tac:device_transform_patterns",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 977 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-filter.yaml

    #$ Used in:
    #$ - site-src/api-types/httproute.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-1
    spec:
      hostnames:
        - my.filter.com
      rules:
        - filters:
            - type: RequestHeaderModifier
              requestHeaderModifier:
                add:
                  - name: my-header
                    value: foo
          backendRefs:
            - name: my-filter-svc1
              weight: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 442 bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/plugins/windows/BUILD

            "notap",
        ],
        visibility = ["//visibility:public"],
        deps = [":windows_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "windows_filesystem_impl",
        srcs = ["windows_filesystem.cc"],
        copts = get_win_copts(),
        tags = [
            "manual",
            "nobuilder",
            "notap",
        ],
        deps = ["//tensorflow/c/experimental/filesystem:filesystem_interface"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 20 06:38:26 UTC 2024
    - 936 bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/image_format/BUILD

            "//tensorflow/tools/tfg_graph_transforms:__subpackages__",
            "//waymo/onboard/ml/chauffeur_net/utils:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "internal_api",
        srcs = ["internal_api.cc"],
        hdrs = ["internal_api.h"],
        deps = [
            "//tensorflow/cc/saved_model:metrics",
            "//tensorflow/cc/saved_model:util",
            "//tensorflow/core/platform",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 03:07:44 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	Parse(usage func()) []string
    }
    
    // A Fetcher reads and returns the profile named by src, using
    // the specified duration and timeout. It returns the fetched
    // profile and a string indicating a URL from where the profile
    // was fetched, which may be different than src.
    type Fetcher interface {
    	Fetch(src string, duration, timeout time.Duration) (*profile.Profile, string, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/internal/gover/gover.go

    			// Allowing them would be a bit confusing because we already have:
    			//	1.21 < 1.21rc1
    			// But a prerelease of a patch would have the opposite effect:
    			//	1.21.3rc1 < 1.21.3
    			// We've never needed them before, so let's not start now.
    			return Version{}
    		}
    		return v
    	}
    
    	// Parse prerelease.
    	i := 0
    	for i < len(x) && (x[i] < '0' || '9' < x[i]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/versions/gover.go

    			// Allowing them would be a bit confusing because we already have:
    			//	1.21 < 1.21rc1
    			// But a prerelease of a patch would have the opposite effect:
    			//	1.21.3rc1 < 1.21.3
    			// We've never needed them before, so let's not start now.
    			return gover{}
    		}
    		return v
    	}
    
    	// Parse prerelease.
    	i := 0
    	for i < len(x) && (x[i] < '0' || '9' < x[i]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top