Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,709 for _content (0.21 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        private static final String META_NAME_THUMBNAIL_CONTENT = "//META[@name=\"thumbnail\" or @name=\"THUMBNAIL\"]/@content";
    
        private static final String META_PROPERTY_OGIMAGE_CONTENT = "//META[@property=\"og:image\"]/@content";
    
        private static final String META_NAME_ROBOTS_CONTENT = "//META[@name=\"robots\" or @name=\"ROBOTS\"]/@content";
    
        private static final String ROBOTS_TAG_NONE = "none";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 41.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRelatedContentBhv.java

        }
    
        @Override
        protected String asEsIndex() {
            return "fess_config.related_content";
        }
    
        @Override
        public String asEsIndexType() {
            return "related_content";
        }
    
        @Override
        public String asEsSearchType() {
            return "related_content";
        }
    
        @Override
        public RelatedContentDbm asDBMeta() {
            return RelatedContentDbm.getInstance();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  3. docs/select/select.py

                      endpoint_url='http://localhost:9000',
                      aws_access_key_id='minio',
                      aws_secret_access_key='minio123',
                      region_name='us-east-1')
    
    r = s3.select_object_content(
        Bucket='mycsvbucket',
        Key='sampledata/TotalPopulation.csv.gz',
        ExpressionType='SQL',
        Expression="select * from s3object s where s.Location like '%United States%'",
        InputSerialization={
    Python
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Aug 18 00:11:39 GMT 2018
    - 1K bytes
    - Viewed (0)
  4. docs_src/request_forms_and_files/tutorial001.py

    @app.post("/files/")
    async def create_file(
        file: bytes = File(), fileb: UploadFile = File(), token: str = Form()
    ):
        return {
            "file_size": len(file),
            "token": token,
            "fileb_content_type": fileb.content_type,
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 13 23:38:22 GMT 2022
    - 317 bytes
    - Viewed (0)
  5. docs_src/request_forms_and_files/tutorial001_an.py

        file: Annotated[bytes, File()],
        fileb: Annotated[UploadFile, File()],
        token: Annotated[str, Form()],
    ):
        return {
            "file_size": len(file),
            "token": token,
            "fileb_content_type": fileb.content_type,
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 18 12:29:59 GMT 2023
    - 396 bytes
    - Viewed (0)
  6. src/main/resources/fess_label.properties

    labels.group_configuration=Group
    labels.group_list_name=Name
    labels.group_name=Name
    labels.group_title_details=Group
    labels.related_content_configuration=Related Content
    labels.related_content_content=Content
    labels.related_content_list_term=Term
    labels.related_content_term=Term
    labels.related_content_title_details=Related Content
    labels.related_query_configuration=Related Query
    labels.related_query_list_term=Term
    labels.related_query_queries=Queries
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  7. src/main/resources/fess_label_en.properties

    labels.group_configuration=Group
    labels.group_list_name=Name
    labels.group_name=Name
    labels.group_title_details=Group
    labels.related_content_configuration=Related Content
    labels.related_content_content=Content
    labels.related_content_list_term=Term
    labels.related_content_term=Term
    labels.related_content_title_details=Related Content
    labels.related_query_configuration=Related Query
    labels.related_query_list_term=Term
    labels.related_query_queries=Queries
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/_cloud/fess.json

            "important_content_eu",
            "important_content_fa",
            "important_content_fi",
            "important_content_fr",
            "important_content_gl",
            "important_content_gu",
            "important_content_he",
            "important_content_hi",
            "important_content_hr",
            "important_content_hu",
            "important_content_hy",
            "important_content_id",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/advanced-dependencies.md

        ```Python hl_lines="16"
        {!> ../../../docs_src/dependencies/tutorial011.py!}
        ```
    
    And that way we are able to "parameterize" our dependency, that now has `"bar"` inside of it, as the attribute `checker.fixed_content`.
    
    ## Use the instance as a dependency
    
    Then, we could use this `checker` in a `Depends(checker)`, instead of `Depends(FixedContentQueryChecker)`, because the dependency is the instance, `checker`, not the class itself.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Oct 17 05:59:11 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http/HttpHeaders.kt

        return false
      }
    
      val responseCode = code
      if ((responseCode < HTTP_CONTINUE || responseCode >= 200) &&
        responseCode != HTTP_NO_CONTENT &&
        responseCode != HTTP_NOT_MODIFIED
      ) {
        return true
      }
    
      // If the Content-Length or Transfer-Encoding headers disagree with the response code, the
      // response is malformed. For best compatibility, we honor the headers.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 7.2K bytes
    - Viewed (0)
Back to top