- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 91 for 512 (0.02 sec)
-
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
this.maxWriteSize = Math.min(maxBufferSize - Smb2WriteRequest.OVERHEAD, Math.min(tc.getConfig().getSendBufferSize(), this.maxWriteSize)) & ~0x7; this.maxTransactSize = Math.min(maxBufferSize - 512, this.maxTransactSize) & ~0x7; return true; } private boolean checkNegotiateContexts(final Smb2NegotiateRequest req, final int caps) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
/** Account control bit flag: Server trust account */ public static final int ACB_SVRTRUST = 256; /** Account control bit flag: Password does not expire */ public static final int ACB_PWNOEXP = 512; /** Account control bit flag: Account is auto-locked */ public static final int ACB_AUTOLOCK = 1024; /** Account control bit flag: Encrypted text password is allowed */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
/** Account control bit flag: Server trust account */ public static final int ACB_SVRTRUST = 256; /** Account control bit flag: Password does not expire */ public static final int ACB_PWNOEXP = 512; /** Account control bit flag: Account is auto-locked */ public static final int ACB_AUTOLOCK = 1024; /** Account control bit flag: Encrypted text password is allowed */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2Test.kt
} /** Create a sufficiently large header set to overflow INITIAL_MAX_FRAME_SIZE bytes. */ private fun largeHeaders(): List<Header> { val nameValues = arrayOfNulls<String>(32) val chars = CharArray(512) var i = 0 while (i < nameValues.size) { Arrays.fill(chars, i.toChar()) val string = String(chars) nameValues[i++] = string nameValues[i++] = string }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 28.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java
assertEquals(32, samr.ACB_MNS); assertEquals(64, samr.ACB_DOMTRUST); assertEquals(128, samr.ACB_WSTRUST); assertEquals(256, samr.ACB_SVRTRUST); assertEquals(512, samr.ACB_PWNOEXP); assertEquals(1024, samr.ACB_AUTOLOCK); assertEquals(2048, samr.ACB_ENC_TXT_PWD_ALLOWED); assertEquals(4096, samr.ACB_SMARTCARD_REQUIRED);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0) -
tests/migrate_test.go
if DB.Dialector.Name() != "mysql" { t.Skip() } type MyTable struct { Def string `gorm:"size:512;index:idx_def,unique"` Abc string `gorm:"size:65000000"` } DB.Migrator().DropTable("my_tables") sql := "CREATE TABLE `my_tables` (`def` varchar(512),`abc` longtext,UNIQUE INDEX `idx_def` (`def`))" if err := DB.Exec(sql).Error; err != nil { t.Errorf("Failed, got error: %v", err)
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Aug 20 04:51:17 UTC 2025 - 65.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/main/resources/fess_config.properties
index.codec=default # Number of primary shards for the index. index.number_of_shards=5 # Auto expand replicas setting for the index. index.auto_expand_replicas=0-1 # Digest algorithm for index IDs. index.id.digest.algorithm=SHA-512 # Initial password for the index user. index.user.initial_password=admin # field names # Field name for favorite count in the index. index.field.favorite_count=favorite_count
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. 0-1 */ String INDEX_auto_expand_replicas = "index.auto_expand_replicas"; /** The key of the configuration. e.g. SHA-512 */ String INDEX_ID_DIGEST_ALGORITHM = "index.id.digest.algorithm"; /** The key of the configuration. e.g. admin */ String INDEX_USER_initial_password = "index.user.initial_password";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)