Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,476 for item$ (0.04 sec)

  1. pkg/ctrlz/topics/assets/templates/collection/item.html

    {{ define "content" }}
    
    {{ with $context := . }}
        {{ if ne $context.Error "" }}
            <b>{{$context.Error}}</b>
        {{else}}
            <p> Item {{ $context.Collection }}/{{ $context.Key }}</p>
            <div class="language-yaml highlighter-rouge">
                <div class="highlight">
                    <pre class="highlight"><code>{{ $context.Value }}</code></pre>
                </div>
            </div>
        {{end}}
    {{end}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 461 bytes
    - Viewed (0)
  2. docs_src/templates/templates/item.html

    <html>
    <head>
        <title>Item Details</title>
        <link href="{{ url_for('static', path='/styles.css') }}" rel="stylesheet">
    </head>
    <body>
        <h1><a href="{{ url_for('read_item', id=id) }}">Item ID: {{ id }}</a></h1>
    </body>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 22:25:37 UTC 2024
    - 235 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/testdata/swagger-merge-item.json

              "type": "array",
              "items": {
                "$ref": "#/definitions/mergeItem"
              },
              "x-kubernetes-patch-merge-key": "name",
              "x-kubernetes-patch-strategy": "merge"
            },
            "nonMergingList": {
              "description": "NonMergingList field.",
              "type": "array",
              "items": {
                "$ref": "#/definitions/mergeItem"
              }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 22:35:14 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/testdata/swagger-precision-item.json

    ymqytw <******@****.***> 1510695623 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 22:35:14 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/testdata/swagger-merge-item-v3.json

                "description": "NonMergingList field.",
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/mergeItem"
                }
              },
              "mergingIntList": {
                "description": "MergingIntList field.",
                "type": "array",
                "items": {
                  "type": "integer",
                  "format": "int32"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/testdata/swagger-precision-item-v3.json

    Jefftree <******@****.***> 1694810813 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. tests/test_generate_unique_id_function.py

        @app.post("/", response_model=List[Item], responses={404: {"model": List[Message]}})
        def post_root(item1: Item, item2: Item):
            return item1, item2  # pragma: nocover
    
        @router.post(
            "/router", response_model=List[Item], responses={404: {"model": List[Message]}}
        )
        def post_router(item1: Item, item2: Item):
            return item1, item2  # pragma: nocover
    
        app.include_router(router)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/heap/heap.go

    	item, exists := h.data.items[key]
    	if !exists {
    		return nil, false, nil
    	}
    	return item.obj, true, nil
    }
    
    // List returns a list of all the items.
    func (h *Heap) List() []interface{} {
    	list := make([]interface{}, 0, len(h.data.items))
    	for _, item := range h.data.items {
    		list = append(list, item.obj)
    	}
    	return list
    }
    
    // Len returns the number of items in the heap.
    func (h *Heap) Len() int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 29 18:37:35 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  9. tests/test_dependency_duplicates.py

        return [item, item2]
    
    
    @app.post("/no-duplicates")
    async def no_duplicates(item: Item, item2: Item = Depends(dependency)):
        return [item, item2]
    
    
    @app.post("/with-duplicates-sub")
    async def no_duplicates_sub(
        item: Item, sub_items: List[Item] = Depends(sub_duplicate_dependency)
    ):
        return [item, sub_items]
    
    
    def test_no_duplicates_invalid():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. docs_src/bigger_applications/app_an/routers/items.py

    from fastapi import APIRouter, Depends, HTTPException
    
    from ..dependencies import get_token_header
    
    router = APIRouter(
        prefix="/items",
        tags=["items"],
        dependencies=[Depends(get_token_header)],
        responses={404: {"description": "Not found"}},
    )
    
    
    fake_items_db = {"plumbus": {"name": "Plumbus"}, "gun": {"name": "Portal Gun"}}
    
    
    @router.get("/")
    async def read_items():
        return fake_items_db
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 1011 bytes
    - Viewed (0)
Back to top