Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,107 for item$ (0.17 sec)

  1. src/text/template/parse/lex_test.go

    	for _, test := range lexPosTests {
    		items := collect(&test, "", "")
    		if !equal(items, test.items, true) {
    			t.Errorf("%s: got\n\t%v\nexpected\n\t%v", test.name, items, test.items)
    			if len(items) == len(test.items) {
    				// Detailed print; avoid item.String() to expose the position value.
    				for i := range items {
    					if !equal(items[i:i+1], test.items[i:i+1], true) {
    						i1 := items[i]
    						i2 := test.items[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            final SuggestItem item = new SuggestItem();
            item.text = text;
            item.readings = readings.toArray(new String[readings.size()][]);
            item.fields = fields.toArray(new String[fields.size()]);
            item.docFreq = docFreq;
            item.queryFreq = queryFreq;
            item.userBoost = userBoost;
            item.tags = tags.toArray(new String[tags.size()]);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_body_updates/test_tutorial001_py39.py

                                }
                            },
                            "required": True,
                        },
                    },
                }
            },
            "components": {
                "schemas": {
                    "Item": {
                        "type": "object",
                        "title": "Item",
                        "properties": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. tests/test_openapi_separate_input_output_schemas.py

        @app.post("/items/")
        def create_item(item: Item):
            return item
    
        @app.post("/items-list/")
        def create_item_list(item: List[Item]):
            return item
    
        @app.get("/items/")
        def read_items() -> List[Item]:
            return [
                Item(
                    name="Portal Gun",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. tests/test_extra_routes.py

        return {"item_id": item_id, "item": item}
    
    
    @app.head("/items/{item_id}")
    def head_item(item_id: str):
        return JSONResponse(None, headers={"x-fastapi-item-id": item_id})
    
    
    @app.options("/items/{item_id}")
    def options_item(item_id: str):
        return JSONResponse(None, headers={"x-fastapi-item-id": item_id})
    
    
    @app.patch("/items/{item_id}")
    def patch_item(item_id: str, item: Item):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_body_updates/test_tutorial001.py

                                }
                            },
                            "required": True,
                        },
                    },
                }
            },
            "components": {
                "schemas": {
                    "Item": {
                        "type": "object",
                        "title": "Item",
                        "properties": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_body_updates/test_tutorial001_py310.py

                                }
                            },
                            "required": True,
                        },
                    },
                }
            },
            "components": {
                "schemas": {
                    "Item": {
                        "type": "object",
                        "title": "Item",
                        "properties": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. pkg/controller/tainteviction/taint_eviction_test.go

    			nodeIndexer.Add(item.newNode)
    			controller.recorder = testutil.NewFakeRecorder()
    			go controller.Run(ctx)
    			controller.NodeUpdated(item.oldNode, item.newNode)
    
    			if item.additionalSleep > 0 {
    				time.Sleep(item.additionalSleep)
    			}
    
    			verifyPodActions(t, item.description, fakeClientset, item.expectPatch, item.expectDelete)
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

                }
            }
    
            @Override
            public int compareTo(Item item) {
                if (item == null) {
                    if (size() == 0) {
                        return 0; // 1-0 = 1- (normalize) = 1
                    }
                    // Compare the entire list of items with null - not just the first one, MNG-6964
                    for (Item i : this) {
                        int result = i.compareTo(null);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/help.go

    	isRawExtension := elemType == rawExtensionObjectType
    	implementsObject := elemType.Implements(objectType)
    	for i := range list {
    		raw := items.Index(i)
    		switch {
    		case isRawExtension:
    			item := raw.Interface().(runtime.RawExtension)
    			switch {
    			case item.Object != nil:
    				list[i] = item.Object
    			case item.Raw != nil:
    				// TODO: Set ContentEncoding and ContentType correctly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 16:25:43 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top