Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for parent_id (0.26 sec)

  1. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                        <label for="doc.parent_id" class="col-sm-3 text-sm-right col-form-label">parent_id</label>
                                        <div class="col-sm-9">
                                            <la:errors property="doc.parent_id"/>
                                            <la:text styleId="doc.parent_id" property="doc.parent_id" styleClass="form-control"/>
                                        </div>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 24.9K bytes
    - Viewed (0)
  2. tests/associations_test.go

    	parent := Parent{}
    	DB.Create(&parent)
    
    	child := Child{ParentID: &parent.ID, Parent: &parent, Name: "HasManyCircularReference"}
    	child1 := Child{ParentID: &parent.ID, Parent: &parent, Name: "HasManyCircularReference1"}
    
    	parent.Children = []*Child{&child, &child1}
    	DB.Save(&parent)
    
    	var children []*Child
    	DB.Where("parent_id = ?", parent.ID).Find(&children)
    	if len(children) != len(parent.Children) ||
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Wed Feb 08 08:29:09 GMT 2023
    - 10.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            assertEquals(1, indexingHelper.deleteChildDocument(client, id));
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals(id, resultMap.get("id"));
            assertEquals("parent_id", resultMap.get("field"));
        }
    
        public void test_getChildDocumentList() {
            documentSizeByQuery = 1L;
            final Map<String, String> resultMap = new HashMap<>();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_aws/fess/doc.json

            "type": "date",
            "format": "date_optional_time"
          },
          "location": {
            "type": "geo_point"
          },
          "mimetype": {
            "type": "keyword"
          },
          "parent_id": {
            "type": "keyword"
          },
          "role": {
            "type": "keyword"
          },
          "label": {
            "type": "keyword"
          },
          "virtual_host": {
            "type": "keyword"
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/_cloud/fess/doc.json

            "type": "date",
            "format": "date_optional_time"
          },
          "location": {
            "type": "geo_point"
          },
          "mimetype": {
            "type": "keyword"
          },
          "parent_id": {
            "type": "keyword"
          },
          "role": {
            "type": "keyword"
          },
          "label": {
            "type": "keyword"
          },
          "virtual_host": {
            "type": "keyword"
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/doc.json

            "type": "date",
            "format": "date_optional_time"
          },
          "location": {
            "type": "geo_point"
          },
          "mimetype": {
            "type": "keyword"
          },
          "parent_id": {
            "type": "keyword"
          },
          "role": {
            "type": "keyword"
          },
          "label": {
            "type": "keyword"
          },
          "virtual_host": {
            "type": "keyword"
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  7. src/main/resources/fess_config.properties

    index.field.segment=segment
    index.field.role=role
    index.field.boost=boost
    index.field.created=created
    index.field.timestamp=timestamp
    index.field.label=label
    index.field.mimetype=mimetype
    index.field.parent_id=parent_id
    index.field.important_content=important_content
    index.field.content=content
    index.field.content_minhash_bits=content_minhash_bits
    index.field.cache=cache
    index.field.digest=digest
    index.field.title=title
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. mimetype */
        String INDEX_FIELD_MIMETYPE = "index.field.mimetype";
    
        /** The key of the configuration. e.g. parent_id */
        String INDEX_FIELD_parent_id = "index.field.parent_id";
    
        /** The key of the configuration. e.g. important_content */
        String INDEX_FIELD_important_content = "index.field.important_content";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                if (parentData == null) {
                    currentData = superData;
                } else if (!parentIds.add(parentData.id())) {
                    StringBuilder message = new StringBuilder("The parents form a cycle: ");
                    for (String parentId : parentIds) {
                        message.append(parentId).append(" -> ");
                    }
                    message.append(parentData.id());
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 59.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/misc/DynamicProperties.java

            if (!this.propertiesFile.exists()) {
                final File parentDir = this.propertiesFile.getParentFile();
                if (!parentDir.exists()) {
                    if (!parentDir.mkdir()) {
                        throw new FileAccessException("ECL0109", new Object[] { file.getAbsolutePath() });
                    }
                } else if (!parentDir.isDirectory()) {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 9.6K bytes
    - Viewed (0)
Back to top