Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 140 for envvars (0.15 sec)

  1. pkg/apis/core/fuzzer/fuzzer.go

    			v := reflect.ValueOf(p).Elem()
    			for _, field := range intFieldsWithDefaults {
    				f := v.FieldByName(field)
    				if f.Int() == 0 {
    					f.SetInt(1)
    				}
    			}
    		},
    		func(ev *core.EnvVar, c fuzz.Continue) {
    			ev.Name = c.RandString()
    			if c.RandBool() {
    				ev.Value = c.RandString()
    			} else {
    				ev.ValueFrom = &core.EnvVarSource{}
    				ev.ValueFrom.FieldRef = &core.ObjectFieldSelector{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. pkg/kubelet/util/manager/cache_based_manager_test.go

    			envSource := &v1.EnvVarSource{
    				SecretKeyRef: &v1.SecretKeySelector{
    					LocalObjectReference: v1.LocalObjectReference{
    						Name: name,
    					},
    				},
    			}
    			container.Env = append(container.Env, v1.EnvVar{ValueFrom: envSource})
    		}
    		pod.Spec.Containers = append(pod.Spec.Containers, container)
    	}
    	return pod
    }
    
    func TestCacheInvalidation(t *testing.T) {
    	fakeClient := &fake.Clientset{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults_test.go

    					Template: &v1.PodTemplateSpec{
    						Spec: v1.PodSpec{
    							InitContainers: []v1.Container{
    								{
    									Name:  "fun",
    									Image: "alpine",
    									Env: []v1.EnvVar{
    										{
    											Name: "MY_POD_IP",
    											ValueFrom: &v1.EnvVarSource{
    												FieldRef: &v1.ObjectFieldSelector{
    													APIVersion: "",
    													FieldPath:  "status.podIP",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    func NewProxierWithNoProxyCIDR(delegate func(req *http.Request) (*url.URL, error)) func(req *http.Request) (*url.URL, error) {
    	// we wrap the default method, so we only need to perform our check if the NO_PROXY (or no_proxy) envvar has a CIDR in it
    	noProxyEnv := os.Getenv("NO_PROXY")
    	if noProxyEnv == "" {
    		noProxyEnv = os.Getenv("no_proxy")
    	}
    	noProxyRules := strings.Split(noProxyEnv, ",")
    
    	cidrs := []*net.IPNet{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  5. pkg/apis/core/zz_generated.deepcopy.go

    func (in *EnvVar) DeepCopyInto(out *EnvVar) {
    	*out = *in
    	if in.ValueFrom != nil {
    		in, out := &in.ValueFrom, &out.ValueFrom
    		*out = new(EnvVarSource)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvVar.
    func (in *EnvVar) DeepCopy() *EnvVar {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *EnvVar) DeepCopyInto(out *EnvVar) {
    	*out = *in
    	if in.ValueFrom != nil {
    		in, out := &in.ValueFrom, &out.ValueFrom
    		*out = new(EnvVarSource)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvVar.
    func (in *EnvVar) DeepCopy() *EnvVar {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  7. docs/pt/docs/deployment.md

        * O conteúdo está encriptado, mesmo embora ele esteja sendo enviado com o protocolo HTTP.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 18 16:16:54 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  8. docs/es/docs/index.md

    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-04-swagger-03.png)
    
    * Luego haz click en el botón de "Execute". La interfaz de usuario se comunicará con tu API, enviará los parámetros y recibirá los resultados para mostrarlos en pantalla:
    
    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-05-swagger-04.png)
    
    ### Mejora a la documentación alternativa de la API
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. docs/pt/docs/index.md

    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-04-swagger-03.png)
    
    * Então clique no botão "Execute", a interface do usuário irá se comunicar com a API, enviar os parâmetros, pegar os resultados e mostrá-los na tela:
    
    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-05-swagger-04.png)
    
    ### Evoluindo a Documentação Alternativa da API
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. docs/pt/docs/async.md

    Esse é o caso da maioria das aplicações web.
    
    Geralmente são muitos usuários, e seu servidor está esperando pelas suas conexões não tão boas para enviar as requisições.
    
    E então esperando novamente pelas respostas voltarem.
    
    Essa "espera" é medida em microssegundos, e ainda assim, somando tudo, é um monte de espera no final.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top