Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,560 for casi (0.07 sec)

  1. 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)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    				rbacv1helpers.NewRule("approve").Groups(certificatesGroup).Resources("signers").Names(capi.LegacyUnknownSignerName).RuleOrDie(),
    			},
    		},
    		{
    			ObjectMeta: metav1.ObjectMeta{Name: "system:certificates.k8s.io:kubelet-serving-approver"},
    			Rules: []rbacv1.PolicyRule{
    				rbacv1helpers.NewRule("approve").Groups(certificatesGroup).Resources("signers").Names(capi.KubeletServingSignerName).RuleOrDie(),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. pkg/controller/certificates/signer/signer.go

    	switch signerName {
    	case capi.KubeletServingSignerName:
    		return isKubeletServing, nil
    	case capi.KubeAPIServerClientKubeletSignerName:
    		return isKubeletClient, nil
    	case capi.KubeAPIServerClientSignerName:
    		return isKubeAPIServerClient, nil
    	case capiv1beta1.LegacyUnknownSignerName:
    		return isLegacyUnknown, nil
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

            // 1) Both attributes are strongly typed and match, usually the case if both are sourced from the local build
            // 2) Both attributes are desugared, usually the case if both are sourced from published metadata
            if (otherAttributeType.isAssignableFrom(attribute.getType())) {
                return Cast.uncheckedCast(get());
            }
    
            // Attempt to coerce myself into the other attribute's type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/os/dirent_wasip1.go

    	}
    	switch syscall.Filetype(buf[off]) {
    	case syscall.FILETYPE_BLOCK_DEVICE:
    		return ModeDevice
    	case syscall.FILETYPE_CHARACTER_DEVICE:
    		return ModeDevice | ModeCharDevice
    	case syscall.FILETYPE_DIRECTORY:
    		return ModeDir
    	case syscall.FILETYPE_REGULAR_FILE:
    		return 0
    	case syscall.FILETYPE_SOCKET_DGRAM:
    		return ModeSocket
    	case syscall.FILETYPE_SOCKET_STREAM:
    		return ModeSocket
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/internal/obj/arm64/anames.go

    	"BLO",
    	"BLS",
    	"BLT",
    	"BMI",
    	"BNE",
    	"BPL",
    	"BRK",
    	"BVC",
    	"BVS",
    	"CASAD",
    	"CASALB",
    	"CASALD",
    	"CASALH",
    	"CASALW",
    	"CASAW",
    	"CASB",
    	"CASD",
    	"CASH",
    	"CASLD",
    	"CASLW",
    	"CASPD",
    	"CASPW",
    	"CASW",
    	"CBNZ",
    	"CBNZW",
    	"CBZ",
    	"CBZW",
    	"CCMN",
    	"CCMNW",
    	"CCMP",
    	"CCMPW",
    	"CINC",
    	"CINCW",
    	"CINV",
    	"CINVW",
    	"CLREX",
    	"CLS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/cycles2.go

    // license that can be found in the LICENSE file.
    
    package p
    
    import "unsafe"
    
    // Test case for issue 5090
    
    type t interface {
    	f(u)
    }
    
    type u interface {
    	t
    }
    
    func _() {
    	var t t
    	var u u
    
    	t.f(t)
    	t.f(u)
    
    	u.f(t)
    	u.f(u)
    }
    
    
    // Test case for issues #6589, #33656.
    
    type A interface {
    	a() interface {
    		AB
    	}
    }
    
    type B interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/AllExceptIgnoredTestRunnerBuilder.java

        @Override
        protected JUnit4Builder junit4Builder() {
            return new FallbackJUnit4Builder();
        }
    
        /**
         * Handles a weird case when there are duplicate JUint 4 jars on the classpath with differing
         * versions. Specifically, when one version is below 4.4 and one is above. This case can occur
         * when a user declares a JUnit dependency on the test classpath while Gradle also loads
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    		FilterFunc: func(obj interface{}) bool {
    			if cast, ok := obj.(*corev1.ConfigMap); ok {
    				return cast.Name == c.configmapName && cast.Namespace == c.configmapNamespace
    			}
    			if tombstone, ok := obj.(cache.DeletedFinalStateUnknown); ok {
    				if cast, ok := tombstone.Obj.(*corev1.ConfigMap); ok {
    					return cast.Name == c.configmapName && cast.Namespace == c.configmapNamespace
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top