Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 288 for isUser (0.16 sec)

  1. src/cmd/vendor/rsc.io/markdown/link.go

    	//	/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/
    
    	j := i
    	if j+1 >= len(s) || s[j] != '<' || !isUser(s[j+1]) {
    		return nil, 0, false
    	}
    	j++
    	for j < len(s) && isUser(s[j]) {
    		j++
    	}
    	if j >= len(s) || s[j] != '@' {
    		return nil, 0, false
    	}
    	for {
    		j++
    		n, ok := skipDomainElem(s[j:])
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

    import org.codelibs.fess.es.user.allcommon.EsAbstractEntity;
    import org.codelibs.fess.es.user.bsentity.dbmeta.UserDbm;
    
    /**
     * ${table.comment}
     * @author ESFlute (using FreeGen)
     */
    public class BsUser extends EsAbstractEntity {
    
        // ===================================================================================
        //                                                                          Definition
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. pilot/pkg/security/authn/policy_applier_test.go

    						}),
    				},
    			},
    		},
    		{
    			name: "JWT policy with Mesh cluster as issuer and remote jwks mode Hybrid",
    			in: []*config.Config{
    				{
    					Spec: &v1beta1.RequestAuthentication{
    						JwtRules: []*v1beta1.JWTRule{
    							{
    								Issuer:  "mesh cluster",
    								JwksUri: "http://jwt-token-issuer.mesh:7443/jwks",
    							},
    						},
    					},
    				},
    			},
    			jwksFetchMode: jwt.Hybrid,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "url is not https",
    			in:   "http://issuer-url",
    			want: `issuer.url: Invalid value: "http://issuer-url": URL scheme must be https`,
    		},
    		{
    			name: "url user info is not allowed",
    			in:   "https://user:pass@issuer-url",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  5. pkg/serviceaccount/openidmetadata.go

    	if err != nil {
    		return nil, err
    	}
    	if iss.Scheme != "https" {
    		return nil, fmt.Errorf("issuer URL must use https scheme, got: %s", issuerURL)
    	}
    	if iss.RawQuery != "" {
    		return nil, fmt.Errorf("issuer URL may not include a query, got: %s", issuerURL)
    	}
    	if iss.Fragment != "" {
    		return nil, fmt.Errorf("issuer URL may not include a fragment, got: %s", issuerURL)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  6. pkg/routes/openidmetadata.go

    	mimeJWKS = "application/jwk-set+json"
    )
    
    // OpenIDMetadataServer is an HTTP server for metadata of the KSA token issuer.
    type OpenIDMetadataServer struct {
    	configJSON []byte
    	keysetJSON []byte
    }
    
    // NewOpenIDMetadataServer creates a new OpenIDMetadataServer.
    // The issuer is the OIDC issuer; keys are the keys that may be used to sign
    // KSA tokens.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 09 18:11:41 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. tests/integration/security/testdata/requestauthn/authn-authz.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      jwtRules:
      - issuer: "test-issuer******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    ---
    # The following policy enables authorization on workload dst.
    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
    - 699 bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm.go

    	ARM.HasTHUMBEE = isSet(hwCap, hwcap_THUMBEE)
    	ARM.HasNEON = isSet(hwCap, hwcap_NEON)
    	ARM.HasVFPv3 = isSet(hwCap, hwcap_VFPv3)
    	ARM.HasVFPv3D16 = isSet(hwCap, hwcap_VFPv3D16)
    	ARM.HasTLS = isSet(hwCap, hwcap_TLS)
    	ARM.HasVFPv4 = isSet(hwCap, hwcap_VFPv4)
    	ARM.HasIDIVA = isSet(hwCap, hwcap_IDIVA)
    	ARM.HasIDIVT = isSet(hwCap, hwcap_IDIVT)
    	ARM.HasVFPD32 = isSet(hwCap, hwcap_VFPD32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 21:26:10 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  9. tests/integration/security/testdata/requestauthn/headers-params.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      jwtRules:
      - issuer: "test-issuer******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
        fromHeaders:
        - name: "x-jwt-token"
          prefix: "Value "
        - name: "auth-token"
          prefix: "Token "
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 867 bytes
    - Viewed (0)
  10. tests/integration/security/policy_attachment_only/testdata/requestauthn/gateway-jwt.yaml.tmpl

    spec:
      targetRef:
        kind: Gateway
        group: gateway.networking.k8s.io
        name: {{ .To.ServiceName }}-gateway
      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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top