- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 447 for dom_id (0.06 seconds)
-
fastapi/openapi/docs.py
dict[str, Any], Doc( """ Default configurations for Swagger UI. You can use it as a template to add any other configurations needed. """ ), ] = { "dom_id": "#swagger-ui", "layout": "BaseLayout", "deepLinking": True, "showExtensions": True, "showCommonExtensions": True, } def get_swagger_ui_html( *, openapi_url: Annotated[
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 24 09:28:10 GMT 2026 - 12.1K bytes - Click Count (0) -
apache-maven/src/main/appended-resources/licenses/Public-Domain.txt
Public Domain...
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri May 17 19:14:22 GMT 2024 - 13 bytes - Click Count (0) -
tests/gaussdb_test.go
} hasLogID := false for _, column := range columns { if column.Name() == "log_id" { hasLogID = true autoIncrement, ok := column.AutoIncrement() if !ok || !autoIncrement { t.Fatalf("column log_id should be auto incrementment") } } } if !hasLogID { t.Fatalf("failed to found column log_id") } } func TestGaussDBMany2ManyWithDefaultValueUUID(t *testing.T) {Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Mon Jul 21 02:46:58 GMT 2025 - 6.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/SID.java
/** * Construct a relative SID * * @param domsid the domain SID * @param id the SID to append to the domain SID */ public SID(final SID domsid, final SID id) { this.revision = domsid.revision; this.identifier_authority = domsid.identifier_authority; this.sub_authority_count = (byte) (domsid.sub_authority_count + id.sub_authority_count);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 16K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SID.java
*/ public SID(final SID domsid, final int rid) { this.revision = domsid.revision; this.identifier_authority = domsid.identifier_authority; this.sub_authority_count = (byte) (domsid.sub_authority_count + 1); this.sub_authority = new int[this.sub_authority_count]; int i; for (i = 0; i < domsid.sub_authority_count; i++) { this.sub_authority[i] = domsid.sub_authority[i]; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java
for (Map<String, Object> doc : docs) { String docId = doc.get("doc_id").toString(); given().contentType("application/json").header("Authorization", getTestToken()).delete(SEARCHLIST_API_PATH + "/doc/" + docId); } refresh(); deleteTestToken(); } @Override protected String getNamePrefix() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
src/main/java/jcifs/SidResolver.java
* @param authorityServerName the server to use for resolution * @param domsid the domain SID * @param rid the group RID * @param flags resolution flags * @return the SIDs of the group members * @throws CIFSException if there is an error retrieving group members */ SID[] getGroupMemberSids(CIFSContext tc, String authorityServerName, SID domsid, int rid, int flags) throws CIFSException; /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.2K bytes - Click Count (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
final SID[] mems = getGroupMemberSids(tc, authorityServerName, domSid, entry.idx, flags); final SID groupSid = new SID(domSid, entry.idx); groupSid.type = jcifs.SID.SID_TYPE_ALIAS; groupSid.domainName = domSid.getDomainName(); groupSid.acctName = new UnicodeString(entry.name, false).toString();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Mon Aug 25 14:34:10 GMT 2025 - 13.6K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp
<la:link href="/admin/searchlist/edit?crudMode=2&doc.doc_id=${f:u(doc.doc_id)}&q=${f:u(q)}" styleClass="btn btn-primary btn-xs">Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 20.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/FavoritesApiTests.java
String docId = docs.get(0).get("doc_id").toString(); // Set favorite Map<String, String> params = new HashMap<>(); params.put("queryId", queryId); Response response = given().contentType("application/json").params(params).when().post("/api/v1/documents/" + docId + "/favorite"); // Should return 200 or 201
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 9.9K bytes - Click Count (0)