Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 175 for podrest (0.36 sec)

  1. docs/zh-hant/docs/index.md

    ---
    
    "_老實說,你建造的東西看起來非常堅固和精緻。在很多方面,這就是我想要的,看到有人建造它真的很鼓舞人心。_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. pkg/test/kube/dump.go

    	if len(pods) == 0 {
    		podList, err := c.Kube().CoreV1().Pods(namespace).List(context.TODO(), metav1.ListOptions{})
    		if err != nil {
    			scopes.Framework.Warnf("Error getting pods list in cluster %s via kubectl: %v", c.Name(), err)
    			return nil
    		}
    		pods = podList.Items
    	}
    	return pods
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. docs/pt/docs/help-fastapi.md

    * Para corrigir um erro de digitação que você encontrou na documentação.
    * Para compartilhar um artigo, video, ou podcast criados por você sobre o FastAPI <a href="https://github.com/tiangolo/fastapi/edit/master/docs/en/data/external_links.yml" class="external-link" target="_blank">editando este arquivo</a>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/poset.go

    // for instance if A<B<C, calling SetOrder for C<A will fail returning false; also
    // calling SetEqual for C==A will fail.
    //
    // poset is implemented as a forest of DAGs; in each DAG, if there is a path (directed)
    // from node A to B, it means that A<B (or A<=B). Equality is represented by mapping
    // two SSA values to the same DAG node; when a new equality relation is recorded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. pkg/controller/deployment/deployment_controller.go

    		if err != nil {
    			return
    		}
    		podMap, err := dc.getPodMapForDeployment(d, rsList)
    		if err != nil {
    			return
    		}
    		numPods := 0
    		for _, podList := range podMap {
    			numPods += len(podList)
    		}
    		if numPods == 0 {
    			dc.enqueueDeployment(d)
    		}
    	}
    }
    
    func (dc *DeploymentController) enqueue(deployment *apps.Deployment) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    				return &http.Response{
    					StatusCode: http.StatusOK,
    					Header:     header,
    					Body:       stringBody(body),
    				}, nil
    			}),
    		}, nil
    	}
    }
    
    func testData() (*v1.PodList, *v1.ServiceList) {
    	pods := &v1.PodList{
    		ListMeta: metav1.ListMeta{
    			ResourceVersion: "15",
    		},
    		Items: []v1.Pod{
    			{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "test", ResourceVersion: "10"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  7. docs/ja/docs/index.md

    ---
    
    "_正直、超堅実で洗練されているように見えます。いろんな意味で、それは私がハグしたかったものです。_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. pkg/api/testing/defaulting_test.go

    		{Group: "", Version: "v1", Kind: "Pod"}:                                                                    {},
    		{Group: "", Version: "v1", Kind: "PodList"}:                                                                {},
    		{Group: "", Version: "v1", Kind: "PodTemplate"}:                                                            {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/Response.kt

       *
       * It is an error to call this method after the body has been consumed.
       *
       * **Warning:** this method loads the requested bytes into memory. Most applications should set
       * a modest limit on `byteCount`, such as 1 MiB.
       */
      @Throws(IOException::class)
      fun peekBody(byteCount: Long): ResponseBody {
        val peeked = body.source().peek()
        val buffer = Buffer()
        peeked.request(byteCount)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. pkg/controller/deployment/deployment_controller_test.go

    	informers.Start(stopCh)
    
    	podMap, err := c.getPodMapForDeployment(d, f.rsLister)
    	if err != nil {
    		t.Fatalf("getPodMapForDeployment() error: %v", err)
    	}
    	podCount := 0
    	for _, podList := range podMap {
    		podCount += len(podList)
    	}
    	if got, want := podCount, 3; got != want {
    		t.Errorf("podCount = %v, want %v", got, want)
    	}
    
    	if got, want := len(podMap), 2; got != want {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top