Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 102 for podKey (0.17 sec)

  1. pkg/serviceaccount/claims.go

    		}
    		if podref.UID != string(pod.UID) {
    			klog.V(4).Infof("Pod UID no longer matches %s/%s: %q != %q", namespace, podref.Name, string(pod.UID), podref.UID)
    			return nil, fmt.Errorf("pod UID (%s) does not match service account pod ref claim (%s)", pod.UID, podref.UID)
    		}
    		if pod.DeletionTimestamp != nil && pod.DeletionTimestamp.Time.Before(invalidIfDeletedBefore) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cadvisor_stats_provider.go

    			// using old log path, they will be populated by cadvisorInfoToContainerStats.
    			podUID := types.UID(podStats.PodRef.UID)
    			logs, err := p.hostStatsProvider.getPodContainerLogStats(podStats.PodRef.Namespace, podStats.PodRef.Name, podUID, containerName, &rootFsInfo)
    			if err != nil {
    				klog.ErrorS(err, "Unable to fetch container log stats", "containerName", containerName)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    				resource_scrape_error 0
    			`,
    		},
    		{
    			name: "arbitrary container metrics for different container, pods and namespaces",
    			summary: &statsapi.Summary{
    				Pods: []statsapi.PodStats{
    					{
    						PodRef: statsapi.PodReference{
    							Name:      "pod_a",
    							Namespace: "namespace_a",
    						},
    						Containers: []statsapi.ContainerStats{
    							{
    								Name:      "container_a",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  4. src/main/webapp/js/admin/plugins/form-validator/lang/pl.js

    pliki typu %s",groupCheckedRangeStart:"Proszę wybrać pomiędzy ",groupCheckedTooFewStart:"Proszę wybrać przynajmniej ",groupCheckedTooManyStart:"Proszę wybrać maksymalnie ",groupCheckedEnd:" element(ów)",badCreditCard:"Podany numer karty kredytowej jest nieprawidłowy",badCVV:"Podany numer CVV jest nieprawidłowy",wrongFileDim:"Nieprawidłowe wymiary obrazu,",imageTooTall:"obraz nie może być wyższa niż",imageTooWide:"obraz nie może być szerszy niż",imageTooSmall:"obraz jest zbyt mały",min:"min",max:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.9K bytes
    - Viewed (0)
  5. src/text/template/example_test.go

    	type Recipient struct {
    		Name, Gift string
    		Attended   bool
    	}
    	var recipients = []Recipient{
    		{"Aunt Mildred", "bone china tea set", true},
    		{"Uncle John", "moleskin pants", false},
    		{"Cousin Rodney", "", false},
    	}
    
    	// Create a new template and parse the letter into it.
    	t := template.Must(template.New("letter").Parse(letter))
    
    	// Execute the template for each recipient.
    	for _, r := range recipients {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 29 00:17:40 UTC 2015
    - 2.4K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/body-fields.md

    # Corpo - Campos
    
    Da mesma forma que você pode declarar validações adicionais e metadados nos parâmetros de *funções de operações de rota* com `Query`, `Path` e `Body`, você pode declarar validações e metadados dentro de modelos do Pydantic usando `Field` do Pydantic.
    
    ## Importe `Field`
    
    Primeiro, você tem que importá-lo:
    
    ```Python hl_lines="4"
    {!../../../docs_src/body_fields/tutorial001.py!}
    ```
    
    !!! warning "Aviso"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 02 15:00:11 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/schema-extra-example.md

    # Declare um exemplo dos dados da requisição
    
    Você pode declarar exemplos dos dados que a sua aplicação pode receber.
    
    Aqui estão várias formas de se fazer isso.
    
    ## `schema_extra` do Pydantic
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/log/slog/text_handler_test.go

    			Any("a", nil),
    			`a`, `<nil>`,
    		},
    	} {
    		t.Run(test.name, func(t *testing.T) {
    			for _, opts := range []struct {
    				name       string
    				opts       HandlerOptions
    				wantPrefix string
    				modKey     func(string) string
    			}{
    				{
    					"none",
    					HandlerOptions{},
    					`time=2000-01-02T03:04:05.000Z level=INFO msg="a message"`,
    					func(s string) string { return s },
    				},
    				{
    					"replace",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 19:05:59 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. docs/pt/docs/deployment/versions.md

    ## Versões disponíveis
    
    Você pode ver as versões disponíveis (por exemplo, para verificar qual é a versão atual) em [Release Notes](../release-notes.md){.internal-link target=\_blank}.
    
    ## Sobre versões
    
    Seguindo as convenções de controle de versão semântica, qualquer versão abaixo de `1.0.0` pode adicionar mudanças significativas.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 29 20:14:40 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  10. pkg/kube/portforwarder.go

    	}
    
    	// Run the same check as k8s.io/kubectl/pkg/cmd/portforward/portforward.go
    	// so that we will fail early if there is a problem contacting API server.
    	podGet := restClient.Get().Resource("pods").Namespace(f.ns).Name(f.podName)
    	obj, err := podGet.Do(context.TODO()).Get()
    	if err != nil {
    		return nil, fmt.Errorf("failed retrieving: %v in the %q namespace", err, f.ns)
    	}
    	pod, ok := obj.(*v1.Pod)
    	if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 02:12:37 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top