Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for criapi (0.46 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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/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)
  7. pkg/apis/certificates/v1beta1/defaults_test.go

    }
    
    var (
    	kubeletClientUsages = []capi.KeyUsage{
    		capi.UsageDigitalSignature,
    		capi.UsageKeyEncipherment,
    		capi.UsageClientAuth,
    	}
    	kubeletClientUsagesNoRSA = []capi.KeyUsage{
    		capi.UsageDigitalSignature,
    		capi.UsageClientAuth,
    	}
    	kubeletClientPEMOptions = pemOptions{
    		cn:  "system:node:nodename",
    		org: "system:nodes",
    	}
    
    	kubeletServerUsages = []capi.KeyUsage{
    		capi.UsageDigitalSignature,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  8. pkg/controller/certificates/signer/signer_test.go

    			usages:     []capi.KeyUsage{capi.UsageServerAuth, capi.UsageClientAuth, capi.UsageDigitalSignature, capi.UsageKeyEncipherment},
    			approved:   true,
    			verify: func(t *testing.T, as []testclient.Action) {
    				if len(as) != 1 {
    					t.Errorf("expected one Update action but got %d", len(as))
    					return
    				}
    				csr := as[0].(testclient.UpdateAction).GetObject().(*capi.CertificateSigningRequest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 15K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/metrics/client_test.go

    				metrics := &cmapi.MetricValueList{
    					Items: []cmapi.MetricValue{
    						{
    							DescribedObject: v1.ObjectReference{
    								Kind:       tc.singleObject.Kind,
    								APIVersion: tc.singleObject.APIVersion,
    								Name:       tc.singleObject.Name,
    							},
    							Timestamp: metav1.Time{Time: timestamp},
    							Metric: cmapi.MetricIdentifier{
    								Name: tc.metricName,
    							},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 16.4K bytes
    - Viewed (0)
  10. docs/pt/docs/deployment.md

    O processo para adquirir um desses certificados costumava ser chato, exigia muita papelada e eram bem caros.
    
    Mas então <a href="https://letsencrypt.org/" class="external-link" target="_blank">_Let's Encrypt_</a> foi criado.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 18 16:16:54 UTC 2022
    - 16.8K bytes
    - Viewed (0)
Back to top