Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 141 for criapi (0.14 sec)

  1. pkg/controller/certificates/approver/sarapprove.go

    }
    
    func appendApprovalCondition(csr *capi.CertificateSigningRequest, message string) {
    	csr.Status.Conditions = append(csr.Status.Conditions, capi.CertificateSigningRequestCondition{
    		Type:    capi.CertificateApproved,
    		Status:  corev1.ConditionTrue,
    		Reason:  "AutoApproved",
    		Message: message,
    	})
    }
    
    func isNodeClientCert(csr *capi.CertificateSigningRequest, x509cr *x509.CertificateRequest) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 16:03:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device.h

    #ifndef TENSORFLOW_C_EAGER_PARALLEL_DEVICE_PARALLEL_DEVICE_H_
    #define TENSORFLOW_C_EAGER_PARALLEL_DEVICE_PARALLEL_DEVICE_H_
    
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/eager/c_api.h"
    #include "tensorflow/c/eager/c_api_experimental.h"
    
    namespace tensorflow {
    namespace parallel_device {
    
    // Allocate a parallel device named `device_name` which forwards operations to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 04 21:49:16 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  3. 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)
  4. pkg/controller/certificates/cleaner/cleaner.go

    // expiration of the certificate (the NotAfter value) has passed.
    func isIssuedExpired(logger klog.Logger, csr *capi.CertificateSigningRequest) bool {
    	for _, c := range csr.Status.Conditions {
    		if c.Type == capi.CertificateApproved && isIssued(csr) && isExpired(csr) {
    			logger.Info("Cleaning CSR as the associated certificate is expired.", "csr", csr.Name)
    			return true
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/response-status-code.md

    * **`200`** e acima são para respostas "Bem-sucedidas". Estes são os que você mais usaria.
        * `200` é o código de status padrão, o que significa que tudo estava "OK".
        * Outro exemplo seria `201`, "Criado". É comumente usado após a criação de um novo registro no banco de dados.
        * Um caso especial é `204`, "Sem Conteúdo". Essa resposta é usada quando não há conteúdo para retornar ao cliente e, portanto, a resposta não deve ter um corpo.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 16:22:07 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_test.cc

      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      TF_DeleteGraph(graph);
      TF_DeleteStatus(s);
    }
    
    TEST(CAPI, Session_Min_CPU) { RunMinTest(/*device=*/"", /*use_XLA=*/false); }
    
    TEST(CAPI, Session_Min_XLA_CPU) { RunMinTest(/*device=*/"", /*use_XLA=*/true); }
    
    TEST(CAPI, Session_Min_GPU) {
      const string gpu_device = GPUDeviceName();
      // Skip this test if no GPU is available.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/build.gradle.kts

    description = "Configuration Cache serialization codecs for :core (and family) types"
    
    dependencies {
        api(projects.baseServices)
        api(projects.configurationCacheBase)
        api(projects.core)
        api(projects.coreApi)
        api(projects.dependencyManagement)
        api(projects.fileCollections)
        api(projects.flowServices)
        api(projects.graphSerialization)
        api(projects.stdlibJavaExtensions)
        api(projects.logging)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/c/eager/parallel_device/parallel_device_remote_test.cc

    ==============================================================================*/
    
    #include <array>
    #include <memory>
    #include <string>
    
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/c_api_experimental.h"
    #include "tensorflow/c/eager/c_api.h"
    #include "tensorflow/c/eager/c_api_experimental.h"
    #include "tensorflow/c/eager/parallel_device/parallel_device.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 22:09:57 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. platforms/software/testing-base/build.gradle.kts

            "OperatorPrecedence", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.baseServices)
        api(projects.buildOperations)
        api(projects.core)
        api(projects.coreApi)
        api(projects.enterpriseLogging)
        api(projects.stdlibJavaExtensions)
        api(projects.logging)
        api(projects.loggingApi)
        api(projects.messaging)
        api(projects.native)
        api(projects.reporting)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top