Search Options

Results per page
Sort
Preferred Languages
Advance

Results 681 - 690 of 880 for Item (0.06 sec)

  1. cmd/site-replication.go

    		return nil
    	}
    
    	if item.Policy != nil {
    		meta.PolicyConfigJSON = item.Policy
    		meta.PolicyConfigUpdatedAt = item.UpdatedAt
    	}
    
    	if item.Versioning != nil {
    		configData, err := base64.StdEncoding.DecodeString(*item.Versioning)
    		if err != nil {
    			return wrapSRErr(err)
    		}
    		meta.VersioningConfigXML = configData
    		meta.VersioningConfigUpdatedAt = item.UpdatedAt
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                    boolean first = true;
                    for (final SuggestItem item : suggestResponse.getItems()) {
                        if (!first) {
                            buf.append(',');
                        }
                        first = false;
    
                        buf.append("{\"text\":\"").append(StringEscapeUtils.escapeJson(item.getText())).append('\"');
                        buf.append(",\"labels\":[");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  3. apache-maven/src/site/site.xml

      xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 http://maven.apache.org/xsd/decoration-1.8.0.xsd">
    
      <edit>${project.scm.url}</edit>
    
      <body>
        <menu name="Overview">
          <item name="Introduction" href="index.html"/>
        </menu>
      </body>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sun Mar 24 21:16:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_extra_data_types/test_tutorial001_an_py39.py

                        "parameters": [
                            {
                                "required": True,
                                "schema": {
                                    "title": "Item Id",
                                    "type": "string",
                                    "format": "uuid",
                                },
                                "name": "item_id",
                                "in": "path",
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. docs/em/docs/advanced/response-directly.md

    **FastAPI** ๐Ÿšš ๐ŸŽ `starlette.responses` `fastapi.responses` ๐Ÿช ๐Ÿ‘†, ๐Ÿ‘ฉโ€๐Ÿ’ป. โœ‹๏ธ ๐ŸŒ… ๐Ÿ’ช ๐Ÿ“จ ๐Ÿ‘Ÿ ๐Ÿ”— โšช๏ธโžก๏ธ ๐Ÿ’ƒ.
    
    ///
    
    ## ๐Ÿ›ฌ ๐Ÿ›ƒ `Response`
    
    ๐Ÿ–ผ ๐Ÿ”› ๐ŸŽฆ ๐ŸŒ ๐Ÿ• ๐Ÿ‘† ๐Ÿ’ช, โœ‹๏ธ โšซ๏ธ ๐Ÿšซ ๐Ÿ“ถ โš , ๐Ÿ‘† ๐Ÿ’ช โœ”๏ธ ๐Ÿ“จ `item` ๐Ÿ”—, &amp; **FastAPI** ๐Ÿ”œ ๐Ÿšฎ โšซ๏ธ `JSONResponse` ๐Ÿ‘†, ๐Ÿญ โšซ๏ธ `dict`, โ™’๏ธ. ๐ŸŒ ๐Ÿ‘ˆ ๐Ÿ”ข.
    
    ๐Ÿ”œ, โžก๏ธ ๐Ÿ‘€ โ” ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ ๐Ÿ‘ˆ ๐Ÿ“จ ๐Ÿ›ƒ ๐Ÿ“จ.
    
    โžก๏ธ ๐Ÿ’ฌ ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ’š ๐Ÿ“จ <a href="https://en.wikipedia.org/wiki/XML" class="external-link" target="_blank">๐Ÿ“‚</a> ๐Ÿ“จ.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. docs/pt/docs/advanced/websockets.md

    ```
    
    </div>
    
    Abrar seu browser em: <a href="http://127.0.0.1:8000" class="external-link" target="_blank">http://127.0.0.1:8000</a>.
    
    Lรก vocรช pode definir:
    
    * O "Item ID", usado na rota.
    * O "Token" usado como um parรขmetro de consulta.
    
    /// tip | Dica
    
    Perceba que a consulta `token` serรก manipulada por uma dependรชncia.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Oct 31 12:20:59 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. internal/s3select/jstream/scanner.go

    	if s.pos >= atomic.LoadInt64(&s.end) {
    		return nullByte
    	}
    	s.ipos++
    
    	if s.ipos > s.ifill { // internal buffer is exhausted
    		s.ifill = <-s.fillReady
    
    		s.buf[0] = s.buf[len(s.buf)-1] // copy current last item to guarantee lookback
    		copy(s.buf[1:], s.nbuf[:])     // copy contents of pre-filled next buffer
    		s.ipos = 1                     // move to beginning of internal buffer
    
    		// request next fill to be prepared
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. docs/pt/docs/python-types.md

    ```
    
    ////
    
    Isso significa que:
    
    * A variรกvel `prices` รฉ um dict`:
        * As chaves deste `dict` sรฃo do tipo `str` (digamos, o nome de cada item).
        * Os valores deste `dict` sรฃo do tipo `float` (digamos, o preรงo de cada item).
    
    #### Union
    
    Vocรช pode declarar que uma variรกvel pode ser de qualquer um dentre **diversos tipos**. Por exemplo, um `int` ou um `str`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 15 12:32:27 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Funnel.java

     * serialization of funnels. When possible, it is recommended that funnels be implemented as a
     * single-element enum to maintain serialization guarantees. See Effective Java (2nd Edition), Item
     * 3: "Enforce the singleton property with a private constructor or an enum type". For example:
     *
     * <pre>{@code
     * public enum PersonFunnel implements Funnel<Person> {
     *   INSTANCE;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_extra_data_types/test_tutorial001.py

                        "parameters": [
                            {
                                "required": True,
                                "schema": {
                                    "title": "Item Id",
                                    "type": "string",
                                    "format": "uuid",
                                },
                                "name": "item_id",
                                "in": "path",
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top