Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 224 for protos (0.23 sec)

  1. .idea/dictionaries/geevee.xml

    <component name="ProjectDictionaryState">
      <dictionary name="geevee">
        <words>
          <w>builtins</w>
          <w>callables</w>
          <w>klass</w>
          <w>proto</w>
          <w>protoc</w>
          <w>protos</w>
          <w>ubuntu</w>
        </words>
      </dictionary>
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Jul 08 11:27:39 GMT 2015
    - 267 bytes
    - Viewed (0)
  2. tensorflow/c/BUILD

            ":tf_tensor_hdrs",
            # TODO: Only include tf_tstring_hdrs. Don't expose the implementation of TF_TString to API
            # users.
            ":tf_tstring",
            "//tensorflow/core:protos_all_cc",
        ],
    )
    
    tf_cuda_library(
        name = "c_api_internal",
        hdrs = [
            "c_api.h",
            "c_api_internal.h",
            "c_api_macros.h",
            "tf_buffer.h",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 30.3K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/BUILD

            "//tensorflow/c/eager:c_api",
            "//tensorflow/c/eager:c_api_experimental",
            "//tensorflow/c/eager:tfe_context_internal",
            "//tensorflow/core:framework",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/common_runtime/eager:context",
        ],
    )
    
    cc_library(
        name = "parallel_device_testlib",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 01 20:19:06 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  4. tensorflow/c/eager/BUILD

            "//tensorflow/core:lib",
            "//tensorflow/core:protos_all_cc",
        ],
    )
    
    cc_library(
        name = "abstract_op_attrs",
        hdrs = ["abstract_op_attrs.h"],
        visibility = [
            "//tensorflow:internal",
        ],
        deps = [
            "//tensorflow/core:lib",
            "//tensorflow/core:protos_all_cc",
            "@com_google_absl//absl/container:inlined_vector",
        ],
    )
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/compare/listener.go

    // limitations under the License.
    
    package compare
    
    import (
    	"bytes"
    	"fmt"
    
    	"github.com/pmezard/go-difflib/difflib"
    
    	// Force import protos
    	_ "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    // ListenerDiff prints a diff between Istiod and Envoy listeners to the passed writer
    func (c *Comparator) ListenerDiff() error {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 04 20:29:08 GMT 2024
    - 2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/grappler/BUILD

            "//tensorflow/c:tf_buffer",
            "//tensorflow/c:tf_buffer_internal",
            "//tensorflow/c:tf_status",
            "//tensorflow/c:tf_status_helper",
            "//tensorflow/core:framework",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core/grappler:grappler_item",
            "//tensorflow/core/grappler/costs:graph_properties",
            "//tensorflow/core/grappler/optimizers:custom_graph_optimizer",
    Plain Text
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  7. CODEOWNERS

    /cni/                                                            @istio/wg-networking-maintainers
    /common/                                                         @istio/wg-test-and-release-maintainers
    /common-protos/                                                  @istio/wg-test-and-release-maintainers
    /install/                                                        @istio/wg-environments-maintainers
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 19:22:33 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  8. tensorflow/BUILD

    config_setting(
        name = "lite_protos_legacy",
        define_values = {"TENSORFLOW_PROTOS": "lite"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "full_protos",
        define_values = {"TENSORFLOW_PROTOS": "full"},
        visibility = ["//visibility:public"],
    )
    
    selects.config_setting_group(
        name = "lite_protos",
        match_any = [":lite_protos_legacy"],
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  9. Makefile.core.mk

    	@bin/check_samples.sh
    	@testlinter
    	@envvarlinter istioctl pilot security
    
    # Allow-list:
    # (k8s) Machinery, utils, klog
    # (proto) Istio API non-CRDs, MeshConfig and ProxyConfig
    # (proto) Envoy TLS proto for SDS
    # (proto) Envoy Wasm filters for wasm xDS proxy
    # (proto) xDS discovery service for xDS proxy
    .PHONY: check-agent-deps
    check-agent-deps:
    	@go list -f '{{ join .Deps "\n" }}' -tags=agent \
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    // `proto` must point to an array of `proto_len` bytes representing a
    // binary-serialized TensorShapeProto.
    TF_CAPI_EXPORT extern void TF_SetAttrTensorShapeProto(
        TF_OperationDescription* desc, const char* attr_name, const void* proto,
        size_t proto_len, TF_Status* status);
    // `protos` and `proto_lens` must point to arrays of length `num_shapes`.
    // `protos[i]` must point to an array of `proto_lens[i]` bytes
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
Back to top