Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 114 for criapi (0.1 sec)

  1. pkg/kubelet/stats/cri_stats_provider_linux.go

    	if criPodStat == nil || criPodStat.Linux == nil || criPodStat.Linux.Cpu == nil {
    		return
    	}
    	criCPU := criPodStat.Linux.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: Mon Oct 16 11:09:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	SecureServing  *SecureServingOptionsWithLoopback
    	Authentication *DelegatingAuthenticationOptions
    	Authorization  *DelegatingAuthorizationOptions
    	Audit          *AuditOptions
    	Features       *FeatureOptions
    	CoreAPI        *CoreAPIOptions
    
    	// FeatureGate is a way to plumb feature gate through if you have them.
    	FeatureGate featuregate.FeatureGate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. docs/pt/docs/deployment/docker.md

    Docker e ferramentas similares também usam um **cache interno** ao construir a imagem, se um arquivo não mudou desde a última vez que a imagem do contêiner foi construída, então ele irá **reutilizar a mesma camada** criada na última vez, ao invés de copiar o arquivo novamente e criar uma nova camada do zero.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  4. docs/pt/docs/async.md

    Isso está em contraste às funções que o FastAPI chama para você: *funções de operação de rota* e dependências.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  5. pkg/test/csrctrl/authority/policies.go

    	capi.UsageCRLSign:           x509.KeyUsageCRLSign,
    	capi.UsageEncipherOnly:      x509.KeyUsageEncipherOnly,
    	capi.UsageDecipherOnly:      x509.KeyUsageDecipherOnly,
    }
    
    var extKeyUsageDict = map[capi.KeyUsage]x509.ExtKeyUsage{
    	capi.UsageAny:             x509.ExtKeyUsageAny,
    	capi.UsageServerAuth:      x509.ExtKeyUsageServerAuth,
    	capi.UsageClientAuth:      x509.ExtKeyUsageClientAuth,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. pkg/apis/certificates/validation/validation_test.go

    		oldCSR: &capi.CertificateSigningRequest{Status: capi.CertificateSigningRequestStatus{
    			Conditions: []capi.CertificateSigningRequestCondition{{Type: capi.CertificateApproved}, {Type: capi.CertificateDenied}},
    		}},
    		want: certificateValidationOptions{
    			allowBothApprovedAndDenied: true,
    		},
    	}, {
    		name:   "compatible update, legacy signerName",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  7. tensorflow/c/BUILD

        deps = [
            ":tf_status",
            "//tensorflow/core:lib",
            "//tensorflow/core:lib_internal",
        ],
    )
    
    tf_cuda_library(
        name = "c_api",
        hdrs = [
            "c_api.h",
            "tf_attrtype.h",
            "tf_buffer.h",
            "tf_datatype.h",
            "tf_file_statistics.h",
            "tf_status.h",
            "tf_tensor.h",
            "tf_tstring.h",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. pkg/controller/certificates/authority/policies.go

    	capi.UsageCRLSign:           x509.KeyUsageCRLSign,
    	capi.UsageEncipherOnly:      x509.KeyUsageEncipherOnly,
    	capi.UsageDecipherOnly:      x509.KeyUsageDecipherOnly,
    }
    
    var extKeyUsageDict = map[capi.KeyUsage]x509.ExtKeyUsage{
    	capi.UsageAny:             x509.ExtKeyUsageAny,
    	capi.UsageServerAuth:      x509.ExtKeyUsageServerAuth,
    	capi.UsageClientAuth:      x509.ExtKeyUsageClientAuth,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top