- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 427 for Credential (0.1 sec)
-
src/main/java/jcifs/smb/SmbTreeConnection.java
throw sae; } } else if ( this.ctx.renewCredentials(loc.getURL().toString(), sae) ) { log.debug("Trying to renew credentials after auth error"); try ( SmbSessionInternal s = trans.getSmbSession(this.ctx, treesess.getTargetHost(), treesess.getTargetDomain()) .unwrap(SmbSessionInternal.class);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
import jcifs.smb.SmbFileInputStream; /** * This servlet may be used to "browse" the entire hierarchy of resources * on an SMB network like one might with Network Neighborhood or Windows * Explorer. The users credentials with be negotiated using NTLM SSP if * the client is Microsoft Internet Explorer. * * @deprecated Unsupported */ @Deprecated public class NetworkExplorer extends HttpServlet { /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 21.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String LDAP_ADMIN_SECURITY_PRINCIPAL = "ldap.admin.security.principal"; public static final String LDAP_ADMIN_SECURITY_CREDENTIALS = "ldap.admin.security.credentials"; public static final String LDAP_PROVIDER_URL = "ldap.provider.url"; public static final String LDAP_SECURITY_AUTHENTICATION = "ldap.security.authentication";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 22 12:43:18 UTC 2024 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
} } protected static MinioClient createClient(final FessConfig fessConfig) { try { return MinioClient.builder().endpoint(fessConfig.getStorageEndpoint()) .credentials(fessConfig.getStorageAccessKey(), fessConfig.getStorageSecretKey()).build(); } catch (final Exception e) { throw new StorageException("Failed to create MinioClient: " + fessConfig.getStorageEndpoint(), e);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 19.9K bytes - Viewed (0) -
internal/config/identity/ldap/ldap.go
lookupResult, err := l.LDAP.LookupUsername(conn, username) if err != nil { errRet := fmt.Errorf("Unable to find user DN: %w", err) return nil, nil, errRet } // Authenticate the user credentials. err = conn.Bind(lookupResult.ActualDN, password) if err != nil { errRet := fmt.Errorf("LDAP auth failed for DN %s: %w", lookupResult.ActualDN, err) return nil, nil, errRet }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 01:04:53 UTC 2024 - 12.4K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HttpHeaders.java
*/ public static final String ACCESS_CONTROL_ALLOW_PRIVATE_NETWORK = "Access-Control-Allow-Private-Network"; /** The HTTP {@code Access-Control-Allow-Credentials} header field name. */ public static final String ACCESS_CONTROL_ALLOW_CREDENTIALS = "Access-Control-Allow-Credentials"; /** The HTTP {@code Access-Control-Expose-Headers} header field name. */ public static final String ACCESS_CONTROL_EXPOSE_HEADERS = "Access-Control-Expose-Headers";
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 01 19:08:38 UTC 2024 - 35.3K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
_2018-11-16_ * **OkHttp now supports TLS 1.3.** This requires either Conscrypt or Java 11+. * **Proxy authenticators are now asked for preemptive authentication.** OkHttp will now request authentication credentials before creating TLS tunnels through HTTP proxies (HTTP `CONNECT`). Authenticators should identify preemptive authentications by the presence of a challenge whose scheme is "OkHttp-Preemptive".
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
docs/bigdata/README.md
## **3. Configure Hadoop, Spark, Hive to use MinIO** After successful installation navigate to the Ambari UI `http://<ambari-server>:8080/` and login using the default credentials: [**_username: admin, password: admin_**] ![ambari-login](https://github.com/minio/minio/blob/master/docs/bigdata/images/image3.png?raw=true "ambari login") ### **3.1 Configure Hadoop**
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 14.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
import java.net.UnknownHostException; /** * This servlet may be used to "browse" the entire hierarchy of resources * on an SMB network like one might with Network Neighborhood or Windows * Explorer. The users credentials with be negotiated using NTLM SSP if * the client is Microsoft Internet Explorer. */ public class NetworkExplorer extends HttpServlet { private static LogStream log = LogStream.getInstance();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 22 03:57:31 UTC 2020 - 19.7K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt
url: HttpUrl, cookies: List<Cookie>, ) = TODO() override fun loadForRequest(url: HttpUrl): List<Cookie> = TODO() } } @Test fun credentials() { val basic: String = Credentials.basic("", "") } @Test fun dispatcher() { var dispatcher = Dispatcher() dispatcher = Dispatcher(Executors.newCachedThreadPool())
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 01 14:21:25 UTC 2024 - 46.5K bytes - Viewed (0)