- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 123 for 512 (0.08 sec)
-
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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.6K bytes - Viewed (0) -
guava/src/com/google/common/io/BaseEncoding.java
public int hashCode() { return alphabet.hashCode() ^ Objects.hashCode(paddingChar); } } private static final class Base16Encoding extends StandardBaseEncoding { final char[] encoding = new char[512]; Base16Encoding(String name, String alphabetChars) { this(new Alphabet(name, alphabetChars.toCharArray())); } private Base16Encoding(Alphabet alphabet) { super(alphabet, null);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Oct 06 14:51:47 UTC 2025 - 41.7K 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 Dec 28 09:35:17 UTC 2025 - Last Modified: Wed Aug 20 04:51:17 UTC 2025 - 65.2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/riscv64validation.s
CADDI16SP $16, X5 // ERROR "rd must be SP/X2" CADDI16SP $-513, SP // ERROR "must be in range [-512, 511]" CADDI16SP $20, SP // ERROR "must be a multiple of 16" CADDI16SP $512, SP // ERROR "must be in range [-512, 511]" CADDI4SPN $4, SP, X5 // ERROR "expected integer prime register in rd" CADDI4SPN $4, X5, X10 // ERROR "SP/X2 must be in rs1"
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Nov 13 12:17:37 UTC 2025 - 42.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
doc/asm.html
</li> <li> <code>TLSBSS</code> = 256 <br> (For <code>DATA</code> and <code>GLOBL</code> items.) Put this data in thread local storage. </li> <li> <code>NOFRAME</code> = 512 <br> (For <code>TEXT</code> items.) Do not insert instructions to allocate a stack frame and save/restore the return address, even if this is not a leaf function. Only valid on functions that declare a frame size of 0.
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Fri Nov 14 19:09:46 UTC 2025 - 36.5K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/riscv64.s
CADD $31, X5 // fd02 CADDI $-32, X5 // 8112 CADDI $31, X5 // fd02 CADDW $-32, X5 // 8132 CADDW $31, X5 // fd22 CADDIW $-32, X5 // 8132 CADDIW $31, X5 // fd22 CADDI16SP $-512, SP // 0171 CADDI16SP $496, SP // 7d61 CADDI4SPN $4, SP, X10 // 4800 CADDI4SPN $1020, SP, X10 // e81f CSLLI $63, X5 // fe12 CSRLI $63, X10 // 7d91 CSRAI $63, X10 // 7d95
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Nov 13 12:17:37 UTC 2025 - 73.7K bytes - Viewed (0) -
lib/fips140/v1.0.0-c2097c7c.zip
if err != nil { return ErrVerification } if !bytes.Equal(em, expected) { return ErrVerification } return nil } func checkApprovedHashNam(hash string) { switch hash { case "SHA-224", "SHA-256", "SHA-384", "SHA-512", "SHA-512/224", "SHA-512/256", "SHA3-224", "SHA3-256", "SHA3-384", "SHA3-512": default: fips140.RecordNonApproved() } } golang.org/fips140@v1.0.0-c2097c7c/fips140/v1.0.0-c2097c7c/rsa/pkcs1v15_test.go // Copyright 2024 The Go Authors. All rights reserved. // Use of this source code is governed...Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)