- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 447 for unsupported (0.51 sec)
-
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/Android10Platform.kt
if (level == WARN) { Log.w(Tag, message, t) } else { Log.i(Tag, message, t) } } companion object { val isSupported: Boolean = isAndroid && Build.VERSION.SDK_INT >= 29 fun buildIfSupported(): Platform? = if (isSupported) Android10Platform() else null }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Jul 20 11:25:50 UTC 2025 - 4.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.8.md
* kubeadm now produces error during preflight checks if swap is enabled. Users, who can setup kubelet to run in unsupported environment with enabled swap, will be able to skip that preflight check. ([#55399](https://github.com/kubernetes/kubernetes/pull/55399), [@kad](https://github.com/kad))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaProvider.java
* Check if RDMA is available on this system * * @return true if RDMA can be used, false otherwise */ boolean isAvailable(); /** * Get supported RDMA capabilities * * @return set of capabilities supported by this provider */ Set<RdmaCapability> getSupportedCapabilities(); /** * Create RDMA connection to remote endpoint *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java
/** * Indicates that 128-bit encryption is supported. */ int NTLMSSP_NEGOTIATE_128 = 0x20000000; /** * Indicates that key exchange is supported for session security. */ int NTLMSSP_NEGOTIATE_KEY_EXCH = 0x40000000; /** * Indicates that 56-bit encryption is supported. */ int NTLMSSP_NEGOTIATE_56 = 0x80000000;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/resources/crawler/rule.xml
<property name="allRequired">true</property> <postConstruct name="addRule"> <arg>"url"</arg> <arg>"http[s]?:.*"</arg> </postConstruct> <postConstruct name="addRule"> <arg>"mimeType"</arg> <!-- Supported MIME type --> <arg>"text/html"</arg> </postConstruct> </component> <component name="webFileRule" class="org.codelibs.fess.crawler.rule.impl.RegexRule" > <property name="ruleId">"webFileRule"</property>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 04 08:42:49 UTC 2020 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2RdmaTransformCapabilitiesContext.java
} @Override public int size() { return 20; // Fixed size: 2 + 2 + 4 + 12 (transform structure) } /** * Check if RDMA is supported based on this context * * @return true if RDMA Transform V1 is supported */ public boolean isRdmaSupported() { return transformCount > 0 && rdmaTransformId == 0x0001; } /** * Get the transform count
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmFlags.java
/** * Flags used during negotiation of NTLMSSP authentication. */ public interface NtlmFlags { /** * Indicates whether Unicode strings are supported or used. */ int NTLMSSP_NEGOTIATE_UNICODE = 0x00000001; /** * Indicates whether OEM strings are supported or used. */ int NTLMSSP_NEGOTIATE_OEM = 0x00000002; /** * Indicates whether the authentication target is requested from
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
docs/security/security.md
Security ======== ## Supported Versions | Version | Supported | Notes | | ------- | ------------------- | -------------------------------------------- | | 5.x | ✅ | APIs subject to change in alpha releases. | | 4.x | ✅ | Android 5.0+ (API level 21+) and on Java 8+. | | 3.x | ❌ Ended 2021-12-31 | Android 2.3+ (API level 9+) and Java 7+. |
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 27 10:19:17 UTC 2022 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcMessage.java
throw new NdrException("DCERPC version not supported"); } this.ptype = buf.dec_ndr_small(); this.flags = buf.dec_ndr_small(); if (buf.dec_ndr_long() != 0x00000010) { /* Little-endian / ASCII / IEEE */ throw new NdrException("Data representation not supported"); } this.length = buf.dec_ndr_short();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java
throw new NdrException("DCERPC version not supported"); } ptype = buf.dec_ndr_small(); flags = buf.dec_ndr_small(); if (buf.dec_ndr_long() != 0x00000010) { /* Little-endian / ASCII / IEEE */ throw new NdrException("Data representation not supported"); } length = buf.dec_ndr_short(); if (buf.dec_ndr_short() != 0) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0)