- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 655 for attributes (0.06 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java
*/ @Execute public JsonResponse<ApiResult> post$setting(final CreateBody body) { validateApi(body, messages -> {}); validateAttributes(body.attributes, this::throwValidationErrorApi); body.crudMode = CrudMode.CREATE; final Group entity = getGroup(body).orElseGet(() -> { throwValidationErrorApi(messages -> {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
assertEquals(access, readAccess); } @Test @DisplayName("Test file attributes setter") void testSetFileAttributes() { request = new Smb2CreateRequest(mockConfig, "test.txt"); int attributes = 0x00000020; // FILE_ATTRIBUTE_ARCHIVE request.setFileAttributes(attributes); byte[] buffer = new byte[1024]; request.writeBytesWireFormat(buffer, 0);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
} } /** * LSA object attributes for policy and resource access. */ public static class LsarObjectAttributes extends NdrObject { /** * Default constructor for LsarObjectAttributes. */ public LsarObjectAttributes() { // Default constructor } /** Length of the object attributes structure. */ public int length;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts
} configurations { create("gradleScriptsElements") { isCanBeResolved = false isCanBeConsumed = true attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named("start-scripts")) outgoing.artifact(startScripts) }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Jul 02 12:28:02 UTC 2025 - 1.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java
} else if (XHTML_LINK_ELEMENT.equals(elementName)) { // Handle hreflang alternate links final String rel = attributes.getValue("rel"); final String hreflang = attributes.getValue("hreflang"); final String href = attributes.getValue("href"); if ("alternate".equals(rel) && hreflang != null && href != null) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 13:19:40 UTC 2025 - 34.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
* * @return the treeHandle */ public final SmbTreeHandleImpl getTreeHandle() { return this.treeHandle; } /** * Gets the search attributes for this iterator. * * @return the search attributes used for filtering directory entries */ public final int getSearchAttributes() { return this.searchAttributes; } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.7K bytes - Viewed (0) -
docs/pt/docs/tutorial/body-fields.md
/// warning | Atenção Note que `Field` é importado diretamente do `pydantic`, não do `fastapi` como todo o resto (`Query`, `Path`, `Body`, etc). /// ## Declare atributos do modelo { #declare-model-attributes } Você pode então utilizar `Field` com atributos do modelo: {* ../../docs_src/body_fields/tutorial001_an_py310.py hl[11:14] *}
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Nov 12 16:23:57 UTC 2025 - 2.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomAttributePointer.java
super(parent); this.attrib = attrib; } @Override public int compareChildNodePointers(NodePointer pointer1, NodePointer pointer2) { // should never happen because attributes have no children return 0; } @Override public Object getValue() { return attrib.getValue(); } @Override public Object getBaseValue() { return attrib;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationTest.java
assertNotNull(trans2SetFileInfo); } @Test @DisplayName("Test attributes with OR operation") void testAttributesWithOrOperation() { // The constructor ORs attributes with 0x80 trans2SetFileInfo = new Trans2SetFileInformation(config, TEST_FID, 0x01, // FILE_ATTRIBUTE_READONLY
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.8K bytes - Viewed (0) -
chainable_api.go
if tx.Statement.Preloads == nil { tx.Statement.Preloads = map[string][]interface{}{} } tx.Statement.Preloads[query] = args return } // Attrs provide attributes used in [FirstOrCreate] or [FirstOrInit] // // Attrs only adds attributes if the record is not found. // // // assign an email if the record is not found // db.Where(User{Name: "non_existing"}).Attrs(User{Email: "******@****.***"}).FirstOrInit(&user)Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Fri Sep 19 01:49:06 UTC 2025 - 14.8K bytes - Viewed (0)