Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 964 for title_ (0.56 sec)

  1. src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java

            languageHelper.langFields = new String[] { "title", "content" };
        }
    
        public void test_createScript() {
            Map<String, Object> doc = new HashMap<>();
            assertEquals("aaa", languageHelper.createScript(doc, "aaa").getIdOrCode());
    
            doc.put("lang", "ja");
            assertEquals("aaa;ctx._source.title_ja=ctx._source.title;ctx._source.content_ja=ctx._source.content",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/context.go

    	n := (e[1] >> lengthBits) & lengthMask
    	if ct == cTitle {
    		n = e[1] & lengthMask
    	}
    	if n != noChange {
    		c.err = transform.ErrEndOfSpan
    		return false
    	}
    	return true
    }
    
    // title writes the title case version of the current rune to dst.
    func title(c *context) bool {
    	ct := c.caseType()
    	if c.info&hasMappingMask == 0 || ct == cTitle {
    		return c.copy()
    	}
    	if c.info&exceptionBit == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/ExampleSelfLinkProcessor.java

                if (example.hasAttribute("title")) {
                    // Using attribute value, since it contains Asciidoc markup, as opposed to getTitle() that returns rendered html
                    String title = example.getAttribute("title").toString();
                    String exampleId = example.getId();
                    if (exampleId == null) {
                        exampleId = IdGenerator.generateId(ID_PREFIX + title);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. docs/tr/docs/python-types.md

    ```
    
    Programın çıktısı:
    
    ```
    John Doe
    ```
    
    Fonksiyon sırayla şunları yapar:
    
    * `first_name` ve `last_name` değerlerini alır.
    * `title()` ile değişkenlerin ilk karakterlerini büyütür.
    * Değişkenleri aralarında bir boşlukla beraber <abbr title="Onları bir bütün olarak sırayla birleştirir.">Birleştirir</abbr>.
    
    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    ### Düzenle
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    //
    //	byte 1:
    //	  7..6  unused
    //	  5..3  length of 1st mapping of case type
    //	  2..0  length of 2nd mapping of case type
    //
    //	  case     1st    2nd
    //	  lower -> upper, title
    //	  upper -> lower, title
    //	  title -> lower, upper
    //
    // Lengths with the value 0x7 indicate no value and implies no change.
    // A length of 0 indicates a mapping to zero-length string.
    //
    // Body bytes:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_path_operation_configurations/test_tutorial005_py39.py

                    "Item": {
                        "title": "Item",
                        "required": ["name", "price"],
                        "type": "object",
                        "properties": {
                            "name": {"title": "Name", "type": "string"},
                            "description": {"title": "Description", "type": "string"},
                            "price": {"title": "Price", "type": "number"},
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_schema_extra_example/test_tutorial004_an.py

                    "Item": {
                        "title": "Item",
                        "required": ["name", "price"],
                        "type": "object",
                        "properties": {
                            "name": {"title": "Name", "type": "string"},
                            "description": IsDict(
                                {
                                    "title": "Description",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_body_multiple_params/test_tutorial003_an.py

                    "Item": {
                        "title": "Item",
                        "required": ["name", "price"],
                        "type": "object",
                        "properties": {
                            "name": {"title": "Name", "type": "string"},
                            "description": IsDict(
                                {
                                    "title": "Description",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_body_multiple_params/test_tutorial003_an_py310.py

                    "Item": {
                        "title": "Item",
                        "required": ["name", "price"],
                        "type": "object",
                        "properties": {
                            "name": {"title": "Name", "type": "string"},
                            "description": IsDict(
                                {
                                    "title": "Description",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_body_multiple_params/test_tutorial003_an_py39.py

                    "Item": {
                        "title": "Item",
                        "required": ["name", "price"],
                        "type": "object",
                        "properties": {
                            "name": {"title": "Name", "type": "string"},
                            "description": IsDict(
                                {
                                    "title": "Description",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top