Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 288 for isUser (0.12 sec)

  1. tests/integration/security/testdata/requestauthn/global-jwt.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: "default"
    spec:
      jwtRules:
      - issuer: "test-issuer******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
      - issuer: "test-issuer******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go

    	_PPC_FEATURE2_SCV  = 0x00100000
    )
    
    func doinit() {
    	// HWCAP2 feature bits
    	PPC64.IsPOWER8 = isSet(hwCap2, _PPC_FEATURE2_ARCH_2_07)
    	PPC64.IsPOWER9 = isSet(hwCap2, _PPC_FEATURE2_ARCH_3_00)
    	PPC64.HasDARN = isSet(hwCap2, _PPC_FEATURE2_DARN)
    	PPC64.HasSCV = isSet(hwCap2, _PPC_FEATURE2_SCV)
    }
    
    func isSet(hwc uint, value uint) bool {
    	return hwc&value != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 775 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/audit/format.go

    	groups := "<none>"
    	if len(ev.User.Username) > 0 {
    		username = ev.User.Username
    		if len(ev.User.Groups) > 0 {
    			groups = auditStringSlice(ev.User.Groups)
    		}
    	}
    	asuser := "<self>"
    	asgroups := "<lookup>"
    	if ev.ImpersonatedUser != nil {
    		asuser = ev.ImpersonatedUser.Username
    		if ev.ImpersonatedUser.Groups != nil {
    			asgroups = auditStringSlice(ev.ImpersonatedUser.Groups)
    		}
    	}
    
    	namespace := "<none>"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 25 12:23:51 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Certificate.kt

          }
        }
    
      /** Returns true if the certificate was signed by [issuer]. */
      @Throws(SignatureException::class)
      fun checkSignature(issuer: PublicKey): Boolean {
        val signedData = CertificateAdapters.tbsCertificate.toDer(tbsCertificate)
    
        return Signature.getInstance(tbsCertificate.signatureAlgorithmName).run {
          initVerify(issuer)
          update(signedData.toByteArray())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/internal/cpu/cpu_ppc64x_linux.go

    	// CPU features
    	hwcap2_DARN = 0x00200000
    	hwcap2_SCV  = 0x00100000
    )
    
    func osinit() {
    	PPC64.IsPOWER8 = isSet(HWCap2, hwcap2_ARCH_2_07)
    	PPC64.IsPOWER9 = isSet(HWCap2, hwcap2_ARCH_3_00)
    	PPC64.IsPOWER10 = isSet(HWCap2, hwcap2_ARCH_3_1)
    	PPC64.HasDARN = isSet(HWCap2, hwcap2_DARN)
    	PPC64.HasSCV = isSet(HWCap2, hwcap2_SCV)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:05:43 UTC 2022
    - 885 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    }
    
    // Issuer provides the configuration for an external provider's specific settings.
    type Issuer struct {
    	// url points to the issuer URL in a format https://url or https://url/path.
    	// This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    	// Same value as the --oidc-issuer-url flag.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. tests/integration/security/testdata/authz/jwt.yaml.tmpl

    metadata:
      name: default
    spec:
      jwtRules:
      - issuer: "test-issuer******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
      - issuer: "test-issuer******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    ---
    
    # The following policy enables authorization on workload:
    # - Allow request principal test-issuer******@****.***/sub-1 to access path /token1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. security/pkg/server/ca/authenticate/oidc.go

    // K8S is created with --service-account-issuer, service-account-signing-key-file and service-account-api-audiences
    // which enable OIDC.
    func NewJwtAuthenticator(jwtRule *v1beta1.JWTRule, meshWatcher mesh.Watcher) (*JwtAuthenticator, error) {
    	issuer := jwtRule.GetIssuer()
    	jwksURL := jwtRule.GetJwksUri()
    	// The key of a JWT issuer may change, so the key may need to be updated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/portgen.go

    // generator.
    func (g *portGenerator) SetUsed(port int) *portGenerator {
    	g.used[port] = struct{}{}
    	return g
    }
    
    // IsUsed indicates if the given port has already been used.
    func (g *portGenerator) IsUsed(port int) bool {
    	_, ok := g.used[port]
    	return ok
    }
    
    // Next assigns the next port for the given protocol.
    func (g *portGenerator) Next(protocol protocol.Instance) int {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 04 00:24:04 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. src/internal/cpu/cpu_x86.go

    	_, ebx7, _, _ := cpuid(7, 0)
    	X86.HasBMI1 = isSet(ebx7, cpuid_BMI1)
    	X86.HasAVX2 = isSet(ebx7, cpuid_AVX2) && osSupportsAVX
    	X86.HasBMI2 = isSet(ebx7, cpuid_BMI2)
    	X86.HasERMS = isSet(ebx7, cpuid_ERMS)
    	X86.HasADX = isSet(ebx7, cpuid_ADX)
    	X86.HasSHA = isSet(ebx7, cpuid_SHA)
    
    	X86.HasAVX512F = isSet(ebx7, cpuid_AVX512F) && osSupportsAVX512
    	if X86.HasAVX512F {
    		X86.HasAVX512BW = isSet(ebx7, cpuid_AVX512BW)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top