- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for workaround (0.18 sec)
-
src/main/java/jcifs/smb/Kerb5Authenticator.java
* See <a href="https://support.microsoft.com/en-us/kb/244380">KB-244380</a> for compatible server configuration. * See {@link jcifs.Configuration#isDfsConvertToFQDN()} for a workaround. */ public class Kerb5Authenticator extends NtlmPasswordAuthenticator { private static final long serialVersionUID = 1999400043787454432L;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/AndXServerMessageBlockTest.java
@Test @DisplayName("readAndXWireFormat applies Snap server workaround (offset 0)") void testReadAndXWireFormatSnapWorkaround() { DummyAndXBlock block = new DummyAndXBlock(); block.headerStart = 0; byte[] buf = new byte[64]; buf[0] = 4; // wordCount buf[1] = 0x42; // andxCommand // andxOffset = 0 triggers workaround -> treat as no andx ServerMessageBlock.writeInt2(0, buf, 3);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java
this.nextBlock = next; } // Helper methods to manipulate parent's private fields via reflection or protected methods public void setStatusForTest(int status) { // Workaround: Use reflection to set private status field try { java.lang.reflect.Field statusField = ServerMessageBlock2.class.getDeclaredField("status"); statusField.setAccessible(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.3K bytes - Viewed (0) -
docs/sts/casdoor.md
``` > NOTE: As MinIO needs to use a claim attribute in JWT for its policy, you should configure it in casdoor as well. Currently, casdoor uses `tag` as a workaround for configuring MinIO's policy. Once successfully set restart the MinIO instance. ``` mc admin service restart myminio ``` ### Using WebIdentiy API
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java
assertTrue(length > 0); assertEquals(0, testBlock.wordCount); assertEquals(0, testBlock.byteCount); } @Test @DisplayName("Test decode with Snap server workaround") void testDecodeWithSnapServerWorkaround() throws SMBProtocolDecodingException { testBlock = new TestAndXServerMessageBlock(mockConfig, (byte) 0x25); byte[] buffer = new byte[1024];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.9K bytes - Viewed (0) -
docs/sts/tls.md
## Explore Further - [MinIO Admin Complete Guide](https://docs.min.io/community/minio-object-store/reference/minio-mc-admin.html)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 6K bytes - Viewed (1) -
cmd/ftp-server-driver.go
return m.info.Size } func (m *minioFileInfo) Mode() os.FileMode { if m.isDir { return os.ModeDir } return os.ModePerm } var minFileDate = time.Date(1980, 1, 1, 0, 0, 0, 0, time.UTC) // Workaround for Filezilla func (m *minioFileInfo) ModTime() time.Time { if !m.info.LastModified.IsZero() { return m.info.LastModified } return minFileDate } func (m *minioFileInfo) IsDir() bool {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
* See <a href="https://support.microsoft.com/en-us/kb/244380">KB-244380</a> for compatible server configuration. * See {@link jcifs.Configuration#isDfsConvertToFQDN()} for a workaround. * * @author mbechler */ public class JAASAuthenticator extends Kerb5Authenticator implements CallbackHandler, SmbRenewableCredentials {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.3K bytes - Viewed (0) -
docs/en/docs/tutorial/schema-extra-example.md
Nevertheless, at the <abbr title="2023-08-26">time of writing this</abbr>, Swagger UI, the tool in charge of showing the docs UI, doesn't support showing multiple examples for the data in **JSON Schema**. But read below for a workaround. ### OpenAPI-specific `examples` { #openapi-specific-examples } Since before **JSON Schema** supported `examples` OpenAPI had support for a different field also called `examples`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.6K bytes - Viewed (0)