Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 233 for attest (0.17 sec)

  1. plugin/pkg/admission/certificates/ctbattest/admission.go

    		return nil
    	}
    
    	if !certificates.IsAuthorizedForSignerName(ctx, p.authz, a.GetUserInfo(), "attest", newBundle.Spec.SignerName) {
    		klog.V(4).Infof("user not permitted to attest ClusterTrustBundle %q with signerName %q", newBundle.Name, newBundle.Spec.SignerName)
    		return admission.NewForbidden(a, fmt.Errorf("user not permitted to attest for signerName %q", newBundle.Spec.SignerName))
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 16:26:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1alpha1/types.go

    	//
    	// In order to create or update a ClusterTrustBundle that sets signerName,
    	// you must have the following cluster-scoped permission:
    	// group=certificates.k8s.io resource=signers resourceName=<the signer name>
    	// verb=attest.
    	//
    	// If signerName is not empty, then the ClusterTrustBundle object must be
    	// named with the signer name as a prefix (translating slashes to colons).
    	// For example, for the signer name `example.com/foo`, valid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

      //
      // In order to create or update a ClusterTrustBundle that sets signerName,
      // you must have the following cluster-scoped permission:
      // group=certificates.k8s.io resource=signers resourceName=<the signer name>
      // verb=attest.
      //
      // If signerName is not empty, then the ClusterTrustBundle object must be
      // named with the signer name as a prefix (translating slashes to colons).
      // For example, for the signer name `example.com/foo`, valid
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1alpha1/generated.proto

      //
      // In order to create or update a ClusterTrustBundle that sets signerName,
      // you must have the following cluster-scoped permission:
      // group=certificates.k8s.io resource=signers resourceName=<the signer name>
      // verb=attest.
      //
      // If signerName is not empty, then the ClusterTrustBundle object must be
      // named with the signer name as a prefix (translating slashes to colons).
      // For example, for the signer name `example.com/foo`, valid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1alpha1/types_swagger_doc_generated.go

    indicates the associated signer, if any.\n\nIn order to create or update a ClusterTrustBundle that sets signerName, you must have the following cluster-scoped permission: group=certificates.k8s.io resource=signers resourceName=<the signer name> verb=attest.\n\nIf signerName is not empty, then the ClusterTrustBundle object must be named with the signer name as a prefix (translating slashes to colons). For example, for the signer name `example.com/foo`, valid ClusterTrustBundle object names include `...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractDefaultTestOrderingIntegrationTest.groovy

            addEmptyTestClass("ACTest")
            addEmptyTestClass("AÄTest")
            addEmptyTestClass("AZTest")
            addEmptyTestClass("AbTest")
    
            String expectedTestMessages = """
    executed Test ${maybeParentheses('test')}(AATest)
    executed Test ${maybeParentheses('test')}(ACTest)
    executed Test ${maybeParentheses('test')}(AZTest)
    executed Test ${maybeParentheses('test')}(AbTest)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/cover/testdata/pkgcfg/a/a_test.go

    package a_test
    
    import (
    	"cfg/a"
    	"testing"
    )
    
    func TestA(t *testing.T) {
    	a.A(0)
    	var aat a.Atyp
    	at := &aat
    	at.Set(42)
    	println(at.Get())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:48:40 UTC 2022
    - 144 bytes
    - Viewed (0)
  8. src/go/build/testdata/directives/a_test.go

    Russ Cox <******@****.***> 1669746650 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 22 bytes
    - Viewed (0)
  9. src/go/build/testdata/doc/a_test.go

    jimmyfrasche <******@****.***> 1519513438 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 07 14:35:52 UTC 2018
    - 36 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cover_coverprofile_multipkg.txt

    [short] skip
    
    # Kick off test.
    go test -p=10 -vet=off -count=1 -coverprofile=cov.p ./...
    
    # Make sure resulting profile is digestible.
    go tool cover -func=cov.p
    
    # No extraneous extra files please.
    ! exists _cover_.out
    
    -- a/a.go --
    package a
    
    func init() {
    	println("package 'a' init: launch the missiles!")
    }
    
    func AFunc() int {
    	return 42
    }
    -- a/a_test.go --
    package a
    
    import "testing"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 17:02:36 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top