Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 462 for open64 (0.21 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/SamrPolicyHandle.java

                MsrpcSamrConnect2 rpc2 = new MsrpcSamrConnect2(server, access, this);
                handle.sendrecv(rpc2);
            }
            this.opened = true;
        }
    
    
        @Override
        public synchronized void close () throws IOException {
            if ( this.opened ) {
                this.opened = false;
                samr.SamrCloseHandle rpc = new MsrpcSamrCloseHandle(this);
                this.handle.sendrecv(rpc);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. fastapi/security/open_id_connect_url.py

    
    class OpenIdConnect(SecurityBase):
        """
        OpenID Connect authentication class. An instance of it would be used as a
        dependency.
        """
    
        def __init__(
            self,
            *,
            openIdConnectUrl: Annotated[
                str,
                Doc(
                    """
                The OpenID Connect URL.
                """
                ),
            ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/StreamZipInput.java

            private boolean opened;
    
            public StreamZipEntry(java.util.zip.ZipEntry entry) {
                super(entry);
            }
    
            @Override
            public <T> T withInputStream(IoFunction<InputStream, T> action) throws IOException {
                if (opened) {
                    throw new IllegalStateException("The input stream for " + getName() + " has already been opened.  It cannot be reopened again.");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    				p.openers.Init()
    				return
    			}
    			// remember opener location, most recent first
    			p.openers.PushFront(i)
    
    		case bpClose:
    			// see if there is a match
    			count := 0
    			for elem := p.openers.Front(); elem != nil; elem = elem.Next() {
    				count++
    				opener := elem.Value.(int)
    				if p.matchOpener(pairValues, opener, i) {
    					// if the opener matches, add nested pair to the ordered list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/msrpc/SamrAliasHandle.java

            handle.sendrecv(rpc);
            if ( rpc.retval != 0 ) {
                throw new SmbException(rpc.retval, false);
            }
            this.opened = true;
        }
    
    
        @Override
        public synchronized void close () throws IOException {
            if ( this.opened ) {
                this.opened = false;
                MsrpcSamrCloseHandle rpc = new MsrpcSamrCloseHandle(this);
                this.handle.sendrecv(rpc);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  6. docs/sts/dex.md

    ~ export MINIO_IDENTITY_OPENID_CONFIG_URL=http://127.0.0.1:5556/dex/.well-known/openid-configuration
    ~ minio server ~/test
    ```
    
    ### Run the `web-identity.go`
    
    ```
    ~ go run web-identity.go -cid example-app -csec ZXhhbXBsZS1hcHAtc2VjcmV0 \
         -config-ep http://127.0.0.1:5556/dex/.well-known/openid-configuration \
         -cscopes groups,openid,email,profile
    ```
    
    ```
    ~ mc admin policy create admin allaccess.json
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. docs/sts/web-identity.md

    export MINIO_ROOT_PASSWORD=minio123
    export MINIO_IDENTITY_OPENID_CONFIG_URL=https://accounts.google.com/.well-known/openid-configuration
    export MINIO_IDENTITY_OPENID_CLIENT_ID="843351d4-1080-11ea-aa20-271ecba3924a"
    # Optional: Allow to specify the requested OpenID scopes (OpenID only requires the `openid` scope)
    #export MINIO_IDENTITY_OPENID_SCOPES="openid,profile,email"
    minio server /mnt/export
    ```
    
    or using `mc`
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. pkg/serviceaccount/openidmetadata.go

    	// to the Kubernetes Service Account key issuer.
    	// https://openid.net/specs/openid-connect-discovery-1_0.html
    	OpenIDConfigPath = "/.well-known/openid-configuration"
    
    	// JWKSPath is the URL path at which the API server serves a JWKS
    	// containing the public keys that may be used to sign Kubernetes
    	// Service Account keys.
    	JWKSPath = "/openid/v1/jwks"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/msrpc/LsaPolicyHandle.java

            handle.sendrecv(rpc);
            if ( rpc.retval != 0 ) {
                throw new SmbException(rpc.retval, false);
            }
            this.opened = true;
        }
    
    
        @Override
        public synchronized void close () throws IOException {
            if ( this.opened ) {
                this.opened = false;
                MsrpcLsarClose rpc = new MsrpcLsarClose(this);
                this.handle.sendrecv(rpc);
                if ( rpc.retval != 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2K bytes
    - Viewed (0)
  10. pkg/serviceaccount/openidmetadata_test.go

    		Name   string
    		Path   string
    		WantOK bool
    	}{
    		{"OIDC config path", "/.well-known/openid-configuration", true},
    		{"JWKS path", "/openid/v1/jwks", true},
    		{"well-known", "/.well-known", false},
    		{"subpath", "/openid/v1/jwks/foo", false},
    		{"query", "/openid/v1/jwks?format=yaml", true},
    		{"fragment", "/openid/v1/jwks#issuer", true},
    	} {
    		t.Run(tt.Name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 01:53:17 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top