Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 141 for criapi (0.11 sec)

  1. tensorflow/c/eager/c_api_distributed_test.cc

      // TODO(b/136478427): Figure out how to correctly shut the server down.
      worker_server1.release();
      worker_server2.release();
    }
    
    TEST(CAPI, TestLocalFunctionWithPackedInput) {
      TestFunctionWithPackedInput(/*remote=*/false);
    }
    
    TEST(CAPI, TestRemoteFunctionWithPackedInput) {
      TestFunctionWithPackedInput(/*remote=*/true);
    }
    
    string VariableAddFunctionSignature() {
      return "    signature {"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/next_pluggable_device/BUILD

    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "c_api",
        srcs = ["c_api.cc"],
        hdrs = ["c_api.h"],
        visibility = ["//visibility:public"],
        deps = [
            ":tensor_pjrt_buffer_util",
            "//tensorflow/c:c_api_macros_hdrs",
            "//tensorflow/c:kernels_experimental_hdrs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning_unstructured_test.go

    func TestDecodeUnstructured(t *testing.T) {
    	internalGVK := schema.GroupVersionKind{
    		Group:   "crispy",
    		Version: runtime.APIVersionInternal,
    		Kind:    "Noxu",
    	}
    	v1GVK := schema.GroupVersionKind{
    		Group:   "crispy",
    		Version: "v1",
    		Kind:    "Noxu",
    	}
    	v2GVK := schema.GroupVersionKind{
    		Group:   "crispy",
    		Version: "v2",
    		Kind:    "Noxu",
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 08 14:55:24 UTC 2018
    - 10.9K bytes
    - Viewed (0)
  4. docs/pt/docs/help-fastapi.md

        * Ver também outros projetos Open Source criados por mim que podem te ajudar.
        * Me seguir para saber quando um novo projeto Open Source for criado.
    * <a href="https://twitter.com/tiangolo" class="external-link" target="_blank">Me siga no **Twitter**</a>.
        * Me dizer o motivo pelo o qual você está usando o FastAPI(Adoro ouvir esse tipo de comentário).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. pkg/controller/certificates/signer/signer.go

    func isKubeletServing(req *x509.CertificateRequest, usages []capi.KeyUsage, signerName string) (bool, error) {
    	if signerName != capi.KubeletServingSignerName {
    		return false, nil
    	}
    	return true, capihelper.ValidateKubeletServingCSR(req, usagesToSet(usages))
    }
    
    func isKubeletClient(req *x509.CertificateRequest, usages []capi.KeyUsage, signerName string) (bool, error) {
    	if signerName != capi.KubeAPIServerClientKubeletSignerName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. pkg/controller/certificates/approver/sarapprove_test.go

    	for _, c := range cases {
    		b := csrBuilder{
    			signerName: capi.KubeAPIServerClientKubeletSignerName,
    			cn:         "system:node:foo",
    			orgs:       []string{"system:nodes"},
    			requestor:  "system:node:foo",
    			usages: []capi.KeyUsage{
    				capi.UsageKeyEncipherment,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-kotlin-extensions/build.gradle.kts

        id("gradlebuild.kotlin-dsl-sam-with-receiver")
    }
    
    description = "Kotlin extensions to make working with Gradle :core and family more convenient"
    
    dependencies {
        api(projects.core)
        api(projects.coreApi)
        api(projects.files)
        api(projects.hashing)
    
        api(libs.kotlinStdlib)
    
        implementation(projects.baseServices)
        implementation(projects.messaging)
        implementation(projects.resources)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 579 bytes
    - Viewed (0)
  8. pkg/kubelet/stats/cri_stats_provider_windows.go

    	if criPodStat == nil || criPodStat.Windows == nil || criPodStat.Windows.Cpu == nil {
    		return
    	}
    	criCPU := criPodStat.Windows.Cpu
    	ps.CPU = &statsapi.CPUStats{
    		Time:                 metav1.NewTime(time.Unix(0, criCPU.Timestamp)),
    		UsageNanoCores:       valueOfUInt64Value(criCPU.UsageNanoCores),
    		UsageCoreNanoSeconds: valueOfUInt64Value(criCPU.UsageCoreNanoSeconds),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. tensorflow/c/safe_ptr.h

    ==============================================================================*/
    
    #ifndef TENSORFLOW_C_SAFE_PTR_H_
    #define TENSORFLOW_C_SAFE_PTR_H_
    
    #include <memory>
    
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/eager/c_api.h"
    
    namespace tensorflow {
    namespace detail {
    
    struct TFTensorDeleter {
      void operator()(TF_Tensor* p) const { TF_DeleteTensor(p); }
    };
    
    struct TFETensorHandleDeleter {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 22 19:17:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/flow-services/build.gradle.kts

        id("gradlebuild.kotlin-dsl-sam-with-receiver")
    }
    
    description = "Gradle Flow API implementation"
    
    dependencies {
        api(projects.baseServices)
        api(projects.coreApi)
        api(projects.stdlibJavaExtensions)
        api(projects.modelCore)
        api(projects.serviceProvider)
    
        api(libs.kotlinStdlib)
    
        implementation(projects.core)
        implementation(projects.messaging)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top