Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 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. tests/common/jwt/jwt_token.go

    	// payload:
    	//{
    	//  "exp": 4837231657,
    	//  "iat": 1683631657,
    	//  "iss": "test-issuer******@****.***",
    	//  "sub": "sub-1",
    	//  "test-issuer******@****.***/nested": {
    	//    "key1": "valueC",
    	//    "nested-2": {
    	//      "key1": "valueC"
    	//    }
    	//  },
    	//  "test-issuer******@****.***/simple": "valueC"
    	//}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authentication_test.go

    						"kind":"AuthenticationConfiguration",
    						"jwt":[{"issuer":{"url": "https://test-issuer"}}]}`)
    			},
    			expectErr: "",
    			expectedConfig: &apiserver.AuthenticationConfiguration{
    				JWT: []apiserver.JWTAuthenticator{
    					{
    						Issuer: apiserver.Issuer{URL: "https://test-issuer"},
    					},
    				},
    			},
    			expectedContentData: `{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. pkg/serviceaccount/jwt.go

    		found = true
    		break
    	}
    
    	if !found {
    		return nil, false, utilerrors.NewAggregate(errlist)
    	}
    
    	// sanity check issuer since we parsed it out before signature validation
    	if !j.issuers[public.Issuer] {
    		return nil, false, fmt.Errorf("token issuer %q is invalid", public.Issuer)
    	}
    
    	tokenAudiences := authenticator.Audiences(public.Audience)
    	if len(tokenAudiences) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. pkg/serviceaccount/openidmetadata_test.go

    		},
    		{
    			name:      "issuer missing https",
    			issuerURL: "http://issuer.example.com",
    			jwksURI:   exampleIssuer + serviceaccount.JWKSPath,
    			keys:      defaultKeys,
    			err:       true,
    		},
    		{
    			name:      "issuer missing scheme",
    			issuerURL: "issuer.example.com",
    			jwksURI:   exampleIssuer + serviceaccount.JWKSPath,
    			keys:      defaultKeys,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 01:53:17 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  7. 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)
  8. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

      {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) }}
        {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) }}
          requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

      {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) }}
        {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) }}
          requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. pilot/pkg/model/jwks_resolver.go

    func (r *JwksResolver) resolveJwksURIUsingOpenID(issuer string, timeout time.Duration) (string, error) {
    	// Try to get jwks_uri through OpenID Discovery.
    	issuer = strings.TrimSuffix(issuer, "/")
    	body, err := r.getRemoteContentWithRetry(issuer+openIDDiscoveryCfgURLSuffix, networkFetchRetryCountOnMainFlow, timeout)
    	if err != nil {
    		log.Errorf("Failed to fetch jwks_uri from %q: %v", issuer+openIDDiscoveryCfgURLSuffix, err)
    		return "", err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top