- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 1,291 for configs (0.17 sec)
-
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationTest.java
config = new PropertyConfiguration(props); } @Test void testConstructor() { // Test constructor initializes all fields correctly trans2QueryPathInfo = new Trans2QueryPathInformation(config, TEST_FILENAME, TEST_INFO_LEVEL); assertNotNull(trans2QueryPathInfo); assertEquals(ServerMessageBlock.SMB_COM_TRANSACTION2, trans2QueryPathInfo.getCommand());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/web.xml
<!-- Session Config --> <!-- ============== --> <!-- <session-config> <session-timeout>1</session-timeout> </session-config> --> <!-- ================================================================================= -->
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue May 06 09:19:22 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java
/** * Constructor for SMB2 request with configuration. * * @param config the configuration object */ protected ServerMessageBlock2Request(final Configuration config) { super(config); } /** * Constructor for SMB2 request with configuration and command. * * @param config the configuration object * @param command the SMB2 command code */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeInputStreamTest.java
when(handle.ensureOpen()).thenReturn(fd); when(fd.getTree()).thenReturn(tree); when(tree.isSMB2()).thenReturn(true); when(tree.getConfig()).thenReturn(config); when(config.getTransactionBufferSize()).thenReturn(65535); Smb2IoctlResponse ioResp = mock(Smb2IoctlResponse.class); SrvPipePeekResponse peek = mock(SrvPipePeekResponse.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsScheduledJobBhv.java
*/ package org.codelibs.fess.opensearch.config.bsbhv; import java.util.List; import java.util.Map; import org.codelibs.fess.opensearch.config.allcommon.EsAbstractBehavior; import org.codelibs.fess.opensearch.config.allcommon.EsAbstractEntity.RequestOptionCall; import org.codelibs.fess.opensearch.config.bsentity.dbmeta.ScheduledJobDbm; import org.codelibs.fess.opensearch.config.cbean.ScheduledJobCB;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
config = new PropertyConfiguration(props); } @Test @DisplayName("Should create configuration from Properties") void testConfigurationCreation() throws CIFSException { // Then assertNotNull(config); assertEquals("testuser", config.getDefaultUsername()); assertEquals("testpass", config.getDefaultPassword());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
docs/en/docs/advanced/settings.md
### The config file { #the-config-file } Coming from the previous example, your `config.py` file could look like: {* ../../docs_src/settings/app02/config.py hl[10] *} Notice that now we don't create a default instance `settings = Settings()`. ### The main app file { #the-main-app-file } Now we create a dependency that returns a new `config.Settings()`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0) -
tests/table_test.go
ThisIsAVeryVeryVeryVeryVeryVeryVeryVeryVeryLongString string `gorm:"unique"` } t.Run("default", func(t *testing.T) { db, _ := gorm.Open(postgres.Open(postgresDSN), &gorm.Config{}) user, err := schema.Parse(&LongString{}, &sync.Map{}, db.Config.NamingStrategy) if err != nil { t.Fatalf("failed to parse user unique, got error %v", err) } constraints := user.ParseUniqueConstraints() if len(constraints) != 1 {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComBlankResponse.java
*/ public class SmbComBlankResponse extends ServerMessageBlock { /** * Creates a new blank SMB1 response. * * @param config the CIFS configuration */ public SmbComBlankResponse(final Configuration config) { super(config); } @Override protected int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComWriteAndXResponseTest.java
import org.junit.jupiter.api.Test; import jcifs.CIFSException; import jcifs.Configuration; import jcifs.config.PropertyConfiguration; public class SmbComWriteAndXResponseTest { private Configuration config; @BeforeEach public void setUp() throws CIFSException { config = new PropertyConfiguration(new Properties()); } /** * Test of readParameterWordsWireFormat method
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.2K bytes - Viewed (0)