- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 612 for unsupported (0.19 sec)
-
src/main/java/jcifs/smb1/smb1/SmbConstants.java
int FLAGS_RESPONSE = 0x80; /** No flags2 set */ int FLAGS2_NONE = 0x0000; /** Long filenames supported flag */ int FLAGS2_LONG_FILENAMES = 0x0001; /** Extended attributes supported flag */ int FLAGS2_EXTENDED_ATTRIBUTES = 0x0002; /** Security signatures supported flag */ int FLAGS2_SECURITY_SIGNATURES = 0x0004; /** Extended security negotiation flag */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportInternal.java
DfsReferralData getDfsReferrals(CIFSContext ctx, String name, String targetHost, String targetDomain, int rn) throws CIFSException; /** * Checks if message signing is supported but not mandatory. * * @return whether signatures are supported but not required * @throws SmbException if an error occurs checking signing status */ boolean isSigningOptional() throws SmbException; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateRequest.java
*/ public class SmbDirectNegotiateRequest { // Protocol constants /** Minimum supported SMB Direct protocol version (1.0) */ public static final int MIN_VERSION = 0x0100; // SMB Direct 1.0 /** Maximum supported SMB Direct protocol version (1.0) */ public static final int MAX_VERSION = 0x0100; // SMB Direct 1.0 /** SMB Direct negotiate request message type */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.4K bytes - Viewed (0) -
README.md
<version>2.1.39</version> </dependency> ``` ## Features ### Protocol Support The library supports a full range of SMB protocols with automatic negotiation: **Supported Protocols:** - **SMB1/CIFS**: Legacy support via `jcifs.smb1/` package - **SMB 2.0.2**: Windows Vista+ (0x0202) - **SMB 2.1**: Windows 7/Server 2008R2 (0x0210)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
android-test-app/src/main/kotlin/okhttp/android/testapp/MainActivity.kt
override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) val client = OkHttpClient() // Ensure we are compiling against the right variant println(AndroidPlatform.isSupported) val url = "https://github.com/square/okhttp".toHttpUrl() println(url.topPrivateDomain()) client.newCall(Request(url)).enqueue( object : Callback { override fun onFailure(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Aug 19 08:10:39 UTC 2025 - 1.7K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/android/DeferredSocketAdapter.kt
*/ class DeferredSocketAdapter( private val socketAdapterFactory: Factory, ) : SocketAdapter { private var delegate: SocketAdapter? = null override fun isSupported(): Boolean = true override fun matchesSocket(sslSocket: SSLSocket): Boolean = socketAdapterFactory.matchesSocket(sslSocket) override fun configureTlsExtensions( sslSocket: SSLSocket, hostname: String?,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
} /** * Gets the servlet context. This operation is not supported. * * @return Never returns, always throws UnsupportedOperationException * @throws UnsupportedOperationException Always thrown as this operation is not supported */ @Override public ServletContext getServletContext() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/UnsupportedEncodingRuntimeException.java
* governing permissions and limitations under the License. */ package org.codelibs.core.exception; import java.io.UnsupportedEncodingException; /** * Signals that a character encoding is not supported. * @author shinsuke */ public class UnsupportedEncodingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1L; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcMessage.java
public static final int ERROR_INVALID_PARAMETER = 0x00000057; /** Buffer provided is insufficient */ public static final int ERROR_INSUFFICIENT_BUFFER = 0x0000007A; /** Operation is not supported */ public static final int ERROR_NOT_SUPPORTED = 0x00000032; /** Access denied to perform the operation */ public static final int ERROR_ACCESS_DENIED = 0x00000005; /** Invalid state for the operation */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.5K bytes - Viewed (0) -
docs/tuning/README.md
#### Step 1 - download `tuned.conf` from the referenced link ``` wget https://raw.githubusercontent.com/minio/minio/master/docs/tuning/tuned.conf ``` #### Step 2 - install tuned.conf as supported performance profile on all nodes ``` sudo mkdir -p /usr/lib/tuned/minio/ sudo mv tuned.conf /usr/lib/tuned/minio ``` #### Step 3 - to enable minio performance profile on all the nodes ```
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jul 19 01:15:02 UTC 2024 - 644 bytes - Viewed (0)