- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 191 for uuid_t (0.04 sec)
-
src/test/java/jcifs/dcerpc/DcerpcBindingTest.java
assertEquals(endpoint, dcerpcBinding.getEndpoint(), "Endpoint should be set correctly."); assertNotNull(dcerpcBinding.getUuid(), "UUID should be set for a valid pipe endpoint."); assertEquals("4B324FC8-1670-01D3-1278-5A47BF6EE188", dcerpcBinding.getUuid().toString(), "UUID should be parsed correctly."); assertEquals(3, dcerpcBinding.getMajor(), "Major version should be parsed correctly.");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDTest.java
import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.SidResolver; import jcifs.dcerpc.rpc; class SIDTest { // Helper to build a minimal sid_t private static rpc.sid_t buildSidT(byte revision, byte[] identAuth, int... subs) { rpc.sid_t s = new rpc.sid_t(); s.revision = revision; s.sub_authority_count = (byte) subs.length; s.identifier_authority = Arrays.copyOf(identAuth, 6);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
tests/postgres_test.go
if !hasLogID { t.Fatalf("failed to found column log_id") } } type Post struct { ID uuid.UUID `gorm:"primary_key;type:uuid;default:uuid_generate_v4();"` Title string Categories []*Category `gorm:"Many2Many:post_categories"` } type Category struct { ID uuid.UUID `gorm:"primary_key;type:uuid;default:uuid_generate_v4();"` Title string Posts []*Post `gorm:"Many2Many:post_categories"` }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sat Oct 08 09:16:32 UTC 2022 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
log.error("Failed to create builtin SIDs", se); } } /** * Convert a sid_t to byte array * * @param sid the RPC sid_t structure to convert * @return byte encoded form */ public static byte[] toByteArray(final rpc.sid_t sid) { final byte[] dst = new byte[1 + 1 + 6 + sid.sub_authority_count * 4]; int di = 0; dst[di] = sid.revision;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcBinding.java
* @return the endpoint */ public String getEndpoint() { return this.endpoint; } /** * @return the uuid */ UUID getUuid() { return this.uuid; } /** * @return the major */ int getMajor() { return this.major; } /** * @return the minor */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
} } } } /** * Converts an RPC sid_t structure to a byte array. * * @param sid the RPC sid_t structure to convert * @return byte array representation of the SID */ public static byte[] toByteArray(final rpc.sid_t sid) { final byte[] dst = new byte[1 + 1 + 6 + sid.sub_authority_count * 4]; int di = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
tests/gaussdb_test.go
func TestGaussDBMany2ManyWithDefaultValueUUID(t *testing.T) { t.Skipf("This test case skipped, because of gaussdb does not have 'uuid-ossp' extension") if DB.Dialector.Name() != "gaussdb" { t.Skip() } if err := DB.Exec(`create extension if not exists "uuid-ossp"`).Error; err != nil { t.Fatalf("Failed to create 'uuid-ossp' extension, but got error %v", err) } DB.Migrator().DropTable(&Post{}, &Category{}, "post_categories")
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 6.6K bytes - Viewed (0) -
schema/naming_test.go
"SKU_ID": "sku_id", "FieldX": "field_x", "HTTPAndSMTP": "http_and_smtp", "HTTPServerHandlerForURLID": "http_server_handler_for_url_id", "UUID": "uuid", "HTTPURL": "http_url", "HTTP_URL": "http_url", "SHA256Hash": "sha256_hash", "SHA256HASH": "sha256_hash",
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue May 30 02:00:48 UTC 2023 - 7K bytes - Viewed (0) -
src/main/config/es/fess_config_boost_document_rule.json
} } } }, "settings" : { "index" : { "creation_date" : "1509021050077", "number_of_shards" : "5", "number_of_replicas" : "1", "uuid" : "AHy84s2vSoamP32r62Jy4Q", "version" : { "created" : "6000051" }, "provided_name" : "fess_config.boost_document_rule" } } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 987 bytes - Viewed (0) -
src/main/config/es/fess_config_duplicate_host.json
} } } }, "settings" : { "index" : { "creation_date" : "1509021051920", "number_of_shards" : "5", "number_of_replicas" : "1", "uuid" : "fP473Sr-RZO2d36NkKGgKQ", "version" : { "created" : "6000051" }, "provided_name" : "fess_config.duplicate_host" } } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 984 bytes - Viewed (0)