Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,843 for lake (0.06 sec)

  1. tests/test_tutorial/test_bigger_applications/test_main.py

            "/items?token=jessica", headers={"X-Token": "fake-super-secret-token"}
        )
        assert response.status_code == 200
        assert response.json() == {
            "plumbus": {"name": "Plumbus"},
            "gun": {"name": "Portal Gun"},
        }
    
    
    def test_items_with_no_token_jessica(client: TestClient):
        response = client.get("/items", headers={"X-Token": "fake-super-secret-token"})
        assert response.status_code == 422
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/pod_container_manager_linux_test.go

    			},
    			wantCgroupName:      NewCgroupName(qosContainersInfo.Burstable, "podfake-uid-4"),
    			wantLiteralCgroupfs: NewCgroupName(qosContainersInfo.Burstable, "podfake-uid-4").ToSystemd(),
    		}, {
    			name: "pod with qos best-effort and cgroupfs",
    			fields: fields{
    				cgroupManager: NewCgroupManager(nil, "cgroupfs"),
    			},
    			args: args{
    				pod: newBestEffortPodWithUID("fake-uid-5"),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 08 13:06:38 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/proxy-override.yaml

          labels:
            app: hello
        spec:
          initContainers:
          - name: istio-init
            args:
            - my
            - custom
            - args
            image: fake/custom-image
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
            - name: istio-proxy
              image: auto
              resources:
                requests:
                  cpu: 123m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 19:52:06 UTC 2023
    - 1.4K bytes
    - Viewed (1)
  4. pkg/kube/inject/testdata/inject/custom-template.yaml.injected

        metadata:
          annotations:
            foo: bar
            inject.istio.io/templates: custom
            prometheus.istio.io/merge-metrics: "false"
            proxy.istio.io/overrides: '{"containers":[{"name":"hello","image":"fake.docker.io/google-samples/hello-go-gke:1.0","resources":{},"readinessProbe":{"httpGet":{"port":80}}}]}'
            sidecar.istio.io/rewriteAppHTTPProbers: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 25 05:41:41 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    		attachedVolumes:        make(map[v1.UniqueVolumeName]attachedVolume),
    		nodesToUpdateStatusFor: make(map[types.NodeName]nodeToUpdateStatusFor),
    		volumePluginMgr:        volumePluginMgr,
    	}
    	nodeName := types.NodeName("node-1")
    	nodeToUpdate := nodeToUpdateStatusFor{
    		nodeName:                  nodeName,
    		statusUpdateNeeded:        true,
    		volumesToReportAsAttached: make(map[v1.UniqueVolumeName]v1.UniqueVolumeName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/fake/fake_apiextensions_client.go

    limitations under the License.
    */
    
    // Code generated by client-gen. DO NOT EDIT.
    
    package fake
    
    import (
    	v1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1"
    	rest "k8s.io/client-go/rest"
    	testing "k8s.io/client-go/testing"
    )
    
    type FakeApiextensionsV1 struct {
    	*testing.Fake
    }
    
    func (c *FakeApiextensionsV1) CustomResourceDefinitions() v1.CustomResourceDefinitionInterface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 16 17:13:40 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  7. samples/builder/README.md

    To build all images and push them:
    
    ```bash
    docker buildx bake --push
    ```
    
    This will push to `localhost:5000` by default, which you can override with `HUB=localhost:5000`.
    It will also build `linux/amd64,linux/arm64` which you can override with `PLATFORMS`.
    
    You can also build a set of images instead of all of them:
    
    ```bash
    docker buildx bake --push examples-helloworld-v1 tcp-echo-server
    ```
    
    ## Updating images
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 928 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram_test.go

    	// `dt` is the admitted cumulative difference in fake time
    	// since the start of the test.  "admitted" means this is
    	// never allowed to decrease, which matches the designed
    	// toleration for negative monotonic clock changes.
    	var dt time.Duration
    	// `t1` is the current fake time
    	t1 := t0.Add(dt)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 16:03:06 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/statusupdater/fake_node_status_updater.go

    	if fnsu.returnError {
    		return fmt.Errorf("fake error on update node status")
    	}
    
    	return nil
    }
    
    func (fnsu *fakeNodeStatusUpdater) UpdateNodeStatusForNode(logger klog.Logger, nodeName types.NodeName) error {
    	if fnsu.returnError {
    		return fmt.Errorf("fake error on update node status")
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/fake/fake_apiextensions_client.go

    limitations under the License.
    */
    
    // Code generated by client-gen. DO NOT EDIT.
    
    package fake
    
    import (
    	v1beta1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1"
    	rest "k8s.io/client-go/rest"
    	testing "k8s.io/client-go/testing"
    )
    
    type FakeApiextensionsV1beta1 struct {
    	*testing.Fake
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 08 09:52:48 UTC 2018
    - 1.2K bytes
    - Viewed (0)
Back to top