Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for openDir (0.3 sec)

  1. cmd/config-current.go

    	"github.com/minio/minio/internal/config/etcd"
    	"github.com/minio/minio/internal/config/heal"
    	xldap "github.com/minio/minio/internal/config/identity/ldap"
    	"github.com/minio/minio/internal/config/identity/openid"
    	idplugin "github.com/minio/minio/internal/config/identity/plugin"
    	xtls "github.com/minio/minio/internal/config/identity/tls"
    	"github.com/minio/minio/internal/config/ilm"
    	"github.com/minio/minio/internal/config/lambda"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/jwks_resolver_test.go

    			t.Errorf("resolveJwksURIUsingOpenID(%+v): expected (%s), got (%s)",
    				c.in, c.expectedJwksURI, jwksURI)
    		}
    	}
    
    	// Verify mock openID discovery http://localhost:9999/.well-known/openid-configuration was called three times.
    	if got, want := ms.OpenIDHitNum, uint64(3); got != want {
    		t.Errorf("Mock OpenID discovery Hit number => expected %d but got %d", want, got)
    	}
    }
    
    func TestGetPublicKey(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. cmd/utils.go

    	}
    
    	// Configure an OpenID Connect aware OAuth2 client.
    	oauth2Config := oauth2.Config{
    		ClientID:     pro.ClientID,
    		ClientSecret: pro.ClientSecret,
    		RedirectURL:  pro.RedirectURL,
    
    		// Discovery returns the OAuth2 endpoints.
    		Endpoint: provider.Endpoint(),
    
    		// "openid" is a required scope for OpenID Connect flows.
    		Scopes: []string{oidc.ScopeOpenID, "groups"},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/authenticator/config.go

    	}
    
    	// NOTE(ericchiang): Keep the OpenID Connect after Service Accounts.
    	//
    	// Because both plugins verify JWTs whichever comes first in the union experiences
    	// cache misses for all requests using the other. While the service account plugin
    	// simply returns an error, the OpenID Connect plugin may query the provider to
    	// update the keys, causing performance hits.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    		ObjectMeta: metav1.ObjectMeta{Name: "system:service-account-issuer-discovery"},
    		Rules: []rbacv1.PolicyRule{
    			rbacv1helpers.NewRule("get").URLs(
    				"/.well-known/openid-configuration",
    				"/.well-known/openid-configuration/",
    				"/openid/v1/jwks",
    				"/openid/v1/jwks/",
    			).RuleOrDie(),
    		},
    	})
    
    	// node-proxier role is used by kube-proxy.
    	nodeProxierRules := []rbacv1.PolicyRule{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. cmd/admin-handlers-config-kv.go

    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/config/etcd"
    	xldap "github.com/minio/minio/internal/config/identity/ldap"
    	"github.com/minio/minio/internal/config/identity/openid"
    	idplugin "github.com/minio/minio/internal/config/identity/plugin"
    	polplugin "github.com/minio/minio/internal/config/policy/plugin"
    	"github.com/minio/minio/internal/config/storageclass"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. fastapi/openapi/docs.py

        <html lang="en-US">
        <head>
            <title>Swagger UI: OAuth2 Redirect</title>
        </head>
        <body>
        <script>
            'use strict';
            function run () {
                var oauth2 = window.opener.swaggerUIRedirectOauth2;
                var sentState = oauth2.state;
                var redirectUrl = oauth2.redirectUrl;
                var isValid, qp, arr;
    
                if (/code|token|error/.test(window.location.hash)) {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

        @Override
        public LoginCredential getLoginCredential() {
            return LaRequestUtil.getOptionalRequest().map(request -> {
                if (logger.isDebugEnabled()) {
                    logger.debug("Logging in with OpenID Connect Authenticator");
                }
                final HttpSession session = request.getSession(false);
                if (session != null) {
                    final String sesState = (String) session.getAttribute(OIC_STATE);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    }
    
    // isPerfFile checks if a file is in perf.data format. It also returns false
    // if it encounters an error during the check.
    func isPerfFile(path string) bool {
    	sourceFile, openErr := os.Open(path)
    	if openErr != nil {
    		return false
    	}
    	defer sourceFile.Close()
    
    	// If the file is the output of a perf record command, it should begin
    	// with the string PERFILE2.
    	perfHeader := []byte("PERFILE2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. samples/addons/kiali.yaml

    data:
      config.yaml: |
        additional_display_details:
        - annotation: kiali.io/api-spec
          icon_annotation: kiali.io/api-type
          title: API Documentation
        auth:
          openid: {}
          openshift:
            client_id_prefix: kiali
          strategy: anonymous
        clustering:
          autodetect_secrets:
            enabled: true
            label: kiali.io/multiCluster=true
          clusters: []
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top