Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 201 for Auth (0.35 sec)

  1. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                        return;
                    }
                } else { /* Basic */
                    String auth = new String( Base64.decode( msg.substring(6) ), "US-ASCII" );
                    int index = auth.indexOf( ':' );
                    String user = (index != -1) ? auth.substring(0, index) : auth;
                    String password = (index != -1) ? auth.substring(index + 1) : "";
                    index = user.indexOf('\\');
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 22 03:57:31 GMT 2020
    - 19.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_de.properties

    labels.file_auth_configuration=Datei-Authentifizierung
    labels.file_auth_list_hostname=Hostname
    labels.file_auth_list_file_crawling_config=Konfigurationsname
    labels.file_auth_any=Beliebig
    labels.file_auth_create_file_config=Erstelle neue Datei-Konfiguration
    labels.file_auth_title_details=Datei-Authentifizierung
    labels.file_auth_hostname=Hostname
    labels.file_auth_port=Port
    labels.file_auth_scheme=Schema
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_ja.properties

    labels.file_auth_configuration=ファイル認証
    labels.file_auth_list_hostname=ホスト名
    labels.file_auth_list_file_crawling_config=設定名
    labels.file_auth_any=任意
    labels.file_auth_create_file_config=新しいファイルクロール設定の作成
    labels.file_auth_title_details=ファイル認証
    labels.file_auth_hostname=ホスト名
    labels.file_auth_port=ポート
    labels.file_auth_scheme=スキーム
    labels.file_auth_username=ユーザー名
    labels.file_auth_password=パスワード
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  4. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

        val responseCode = userResponse.code
    
        val method = userResponse.request.method
        when (responseCode) {
          HTTP_PROXY_AUTH -> {
            val selectedProxy = route!!.proxy
            if (selectedProxy.type() != Proxy.Type.HTTP) {
              throw ProtocolException("Received HTTP_PROXY_AUTH (407) code while not using proxy")
            }
            return client.proxyAuthenticator.authenticate(route, userResponse)
          }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 13:24:48 GMT 2024
    - 12.1K bytes
    - Viewed (4)
  5. cmd/admin-handlers-idp-ldap.go

    	}
    
    	listType := r.Form.Get("listType")
    	if listType != "sts-only" && listType != "svcacc-only" && listType != "" {
    		// default to both
    		listType = ""
    	}
    
    	var serviceAccounts []auth.Credentials
    	var stsKeys []auth.Credentials
    
    	if listType == "" || listType == "sts-only" {
    		stsKeys, err = globalIAMSys.ListSTSAccounts(ctx, targetAccount)
    		if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

        val nextTunnelRequest =
          createTunnel()
            ?: return ConnectResult(plan = this) // Success.
    
        // The proxy decided to close the connection after an auth challenge. Retry with different
        // auth credentials.
        rawSocket?.closeQuietly()
    
        val nextAttempt = attempt + 1
        return when {
          nextAttempt < MAX_TUNNEL_ATTEMPTS -> {
            user.callConnectEnd(route, null)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  7. cmd/s3-zip-handlers.go

    package cmd
    
    import (
    	"bytes"
    	"context"
    	"errors"
    	"io"
    	"mime"
    	"net/http"
    	"path/filepath"
    	"sort"
    	"strings"
    
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/crypto"
    	xhttp "github.com/minio/minio/internal/http"
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/pkg/v2/policy"
    	"github.com/minio/zipindex"
    )
    
    const (
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 09 10:41:25 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.file_auth_configuration	=	Authentification des fichiers
    labels.file_auth_list_hostname	=	Hostname
    labels.file_auth_list_file_crawling_config	=	Config Name
    labels.file_auth_any	=	Any
    labels.file_auth_create_file_config	=	Créer un nouveau fichier Config
    labels.file_auth_title_details	=	Authentification des fichiers
    labels.file_auth_hostname	=	Hostname
    labels.file_auth_port	=	Port
    labels.file_auth_scheme	=	Schéma
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/certificates/v1/generated.proto

      //
      // Requests for TLS client certificates typically request: "digital signature", "key encipherment", "client auth".
      //
      // Requests for TLS serving certificates typically request: "key encipherment", "digital signature", "server auth".
      //
      // Valid values are:
      //  "signing", "digital signature", "content commitment",
      //  "key encipherment", "key agreement", "data encipherment",
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  10. internal/config/identity/ldap/ldap.go

    	if dsecs == "" {
    		return l.stsExpiryDuration, nil
    	}
    
    	d, err := strconv.Atoi(dsecs)
    	if err != nil {
    		return 0, auth.ErrInvalidDuration
    	}
    
    	dur := time.Duration(d) * time.Second
    
    	if dur < minLDAPExpiry || dur > maxLDAPExpiry {
    		return 0, auth.ErrInvalidDuration
    	}
    	return dur, nil
    }
    
    // ParsesAsDN determines if the given string could be a valid DN based on
    // parsing alone.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 9.9K bytes
    - Viewed (0)
Back to top