Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 152 for Rejected (0.13 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    		waitingPod := newWaitingPod(pod, pluginsWaitTime)
    		f.waitingPods.add(waitingPod)
    		msg := fmt.Sprintf("one or more plugins asked to wait and no plugin rejected pod %q", pod.Name)
    		logger.V(4).Info("One or more plugins asked to wait and no plugin rejected pod", "pod", klog.KObj(pod))
    		return framework.NewStatus(framework.Wait, msg)
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    	}
    	if err := testDowngradeCanary(t, VersionTLS12, VersionTLS11); err == nil {
    		t.Errorf("downgrade from TLS 1.2 to TLS 1.1 was not detected")
    	}
    	if err := testDowngradeCanary(t, VersionTLS12, VersionTLS10); err == nil {
    		t.Errorf("downgrade from TLS 1.2 to TLS 1.0 was not detected")
    	}
    	if err := testDowngradeCanary(t, VersionTLS13, VersionTLS13); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/types.go

    	// Webhooks with side effects MUST implement a reconciliation system, since a request may be
    	// rejected by a future step in the admission chain and the side effects therefore need to be undone.
    	// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
    	// sideEffects == Unknown or Some. Defaults to Unknown.
    	// +optional
    	SideEffects *SideEffectClass
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
      // Requests with the dryRun attribute will be auto-rejected if they match a webhook with
      // sideEffects == Unknown or Some. Defaults to Unknown.
      // +optional
      optional string sideEffects = 6;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	// EncryptedClientHelloRejectionVerify.
    	//
    	// If EncryptedClientHelloRejectionVerify is nil and ECH is rejected, the
    	// roots in RootCAs will be used to verify the ECH providers public
    	// certificate. VerifyPeerCertificate and VerifyConnection are not called
    	// when ECH is rejected, even if set, and InsecureSkipVerify is ignored.
    	EncryptedClientHelloRejectionVerify func(ConnectionState) error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
      // Requests with the dryRun attribute will be auto-rejected if they match a webhook with
      // sideEffects == Unknown or Some.
      optional string sideEffects = 6;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	// send a watch request to test skipping long running request
    	if err := expectHTTPGet(fmt.Sprintf("%s/api/v1/foos/foo/proxy", server.URL), http.StatusOK); err != nil {
    		// request should not be rejected
    		t.Error(err)
    	}
    }
    
    func TestApfRejectRequest(t *testing.T) {
    	server := newApfServerWithSingleRequest(t, decisionReject)
    	defer server.Close()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// Webhooks with side effects MUST implement a reconciliation system, since a request may be
    	// rejected by a future step in the admission chain and the side effects therefore need to be undone.
    	// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
    	// sideEffects == Unknown or Some. Defaults to Unknown.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Webhooks with side effects MUST implement a reconciliation system, since a request may be
    	// rejected by a future step in the admission chain and the side effects therefore need to be undone.
    	// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
    	// sideEffects == Unknown or Some.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  10. pkg/apis/certificates/validation/validation_test.go

    					Usages:     validUsages,
    					Request:    newCSRPEM(t),
    					SignerName: "example.com/some-signer-name",
    				},
    			},
    		},
    		"signerName with a total length greater than 571 characters should be rejected": {
    			csr: capi.CertificateSigningRequest{
    				ObjectMeta: validObjectMeta,
    				Spec: capi.CertificateSigningRequestSpec{
    					Usages:  validUsages,
    					Request: newCSRPEM(t),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
Back to top