Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,565 for 50$ (0.1 sec)

  1. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    			},
    			resources:      extendedResourceSet,
    			existingPods:   nil,
    			expectedScores: []framework.NodeScore{{Name: "node1", Score: 50}, {Name: "node2", Score: 50}},
    		},
    		{
    			// Honor extended resource if the pod requests.
    			// For both nodes: cpuScore and memScore are 50.
    			// In terms of extended resource score:
    			// - node1 get: 2 / 4 * 100 = 50
    			// - node2 get: 2 / 10 * 100 = 20
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  2. pkg/kubectl/cmd/convert/convert_test.go

    				{
    					expected: "targetAverageUtilization: 50",
    				},
    			},
    		},
    		{
    			name:          "v2beta1 HPA to v1 HPA",
    			file:          "../../../../test/fixtures/pkg/kubectl/cmd/convert/v2beta1HPA.yaml",
    			outputVersion: "autoscaling/v1",
    			fields: []checkField{
    				{
    					expected: "apiVersion: autoscaling/v1",
    				},
    				{
    					expected: "targetCPUUtilizationPercentage: 50",
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default_test.go

    			nominalSharesExpected:   40,
    			lendablePercentexpected: 50,
    		},
    		{
    			name:                    "workload-low",
    			nominalSharesExpected:   100,
    			lendablePercentexpected: 90,
    		},
    		{
    			name:                    "global-default",
    			nominalSharesExpected:   20,
    			lendablePercentexpected: 50,
    		},
    		{
    			name:                    "catch-all",
    			nominalSharesExpected:   5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. docs_src/query_params_str_validations/tutorial004_py310.py

    from fastapi import FastAPI, Query
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(
        q: str | None = Query(
            default=None, min_length=3, max_length=50, pattern="^fixedquery$"
        ),
    ):
        results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]}
        if q:
            results.update({"q": q})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 24 20:26:06 UTC 2023
    - 335 bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				NodeStatusMaxImages:                       utilpointer.Int32(50),
    				MaxOpenFiles:                              1000000,
    				ContentType:                               "application/vnd.kubernetes.protobuf",
    				KubeAPIQPS:                                utilpointer.Int32(50),
    				KubeAPIBurst:                              100,
    				SerializeImagePulls:                       utilpointer.Bool(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_query_params_str_validations/test_tutorial010_an_py39.py

                                            {
                                                "type": "string",
                                                "minLength": 3,
                                                "maxLength": 50,
                                                "pattern": "^fixedquery$",
                                            },
                                            {"type": "null"},
                                        ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. docs_src/query_params_str_validations/tutorial003.py

    from typing import Union
    
    from fastapi import FastAPI, Query
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(
        q: Union[str, None] = Query(default=None, min_length=3, max_length=50),
    ):
        results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]}
        if q:
            results.update({"q": q})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 329 bytes
    - Viewed (0)
  8. docs_src/query_params_str_validations/tutorial002_an_py310.py

    from typing import Annotated
    
    from fastapi import FastAPI, Query
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(q: Annotated[str | None, Query(max_length=50)] = None):
        results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]}
        if q:
            results.update({"q": q})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 309 bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route_internal_test.go

    			route: &networking.HTTPRoute{
    				Mirror:        &networking.Destination{},
    				MirrorPercent: &wrapperspb.UInt32Value{Value: 50},
    			},
    			want: &core.RuntimeFractionalPercent{
    				DefaultValue: &xdstype.FractionalPercent{
    					Numerator:   50,
    					Denominator: xdstype.FractionalPercent_HUNDRED,
    				},
    			},
    		},
    		{
    			name: "zero mirror percentage",
    			route: &networking.HTTPRoute{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

            final CrawlerWebServer server = new CrawlerWebServer(7070);
            server.start();
    
            final String url = "http://localhost:7070/";
            try {
                final int maxCount = 50;
                final int numOfThread = 10;
    
                final File file = File.createTempFile("crawler-", "");
                file.delete();
                file.mkdirs();
                file.deleteOnExit();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top