Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for envvars (0.19 sec)

  1. 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)
  2. cluster/gce/windows/k8s-node-setup.psm1

      # it makes debugging this script easier, and it also makes the syntax a lot
      # easier (${env:K8S_DIR} can be expanded within a string but
      # ${kube_env}['K8S_DIR'] cannot be afaik).
      $env_vars = @{
        "K8S_DIR" = ${kube_env}['K8S_DIR']
        # Typically 'C:\etc\kubernetes\node\bin' (not just 'C:\etc\kubernetes\node')
        "NODE_DIR" = ${kube_env}['NODE_DIR']
        "CNI_DIR" = ${kube_env}['CNI_DIR']
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_utils_test.go

    	currentSet := set.DeepCopy()
    	currentRevision, err := newRevision(set, 1, set.Status.CollisionCount)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	set.Spec.Template.Spec.Containers[0].Env = []v1.EnvVar{{Name: "foo", Value: "bar"}}
    	updateSet := set.DeepCopy()
    	updateRevision, err := newRevision(set, 2, set.Status.CollisionCount)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	Name string
    	// devicePath is the path inside of the container that the device will be mapped to.
    	DevicePath string
    }
    
    // EnvVar represents an environment variable present in a Container.
    type EnvVar struct {
    	// Required: Name of the environment variable.
    	// When the RelaxedEnvironmentVariableValidation feature gate is disabled, this must consist of alphabetic characters,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional ConfigMapEnvSource configMapRef = 2;
    
      // The Secret to select from
      // +optional
      optional SecretEnvSource secretRef = 3;
    }
    
    // EnvVar represents an environment variable present in a Container.
    message EnvVar {
      // Name of the environment variable. Must be a C_IDENTIFIER.
      optional string name = 1;
    
      // Variable references $(VAR_NAME) are expanded
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.pb.go

    }
    
    var xxx_messageInfo_EnvFromSource proto.InternalMessageInfo
    
    func (m *EnvVar) Reset()      { *m = EnvVar{} }
    func (*EnvVar) ProtoMessage() {}
    func (*EnvVar) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{50}
    }
    func (m *EnvVar) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *EnvVar) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    			},
    			"", "",
    		},
    		{
    			"invalid vm config - invalid env name",
    			&extensions.WasmPlugin{
    				Url: "test.com/test",
    				VmConfig: &extensions.VmConfig{
    					Env: []*extensions.EnvVar{
    						{
    							Name:      "",
    							ValueFrom: extensions.EnvValueSource_HOST,
    						},
    					},
    				},
    			},
    			"spec.vmConfig.env invalid", "",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// devicePath is the path inside of the container that the device will be mapped to.
    	DevicePath string `json:"devicePath" protobuf:"bytes,2,opt,name=devicePath"`
    }
    
    // EnvVar represents an environment variable present in a Container.
    type EnvVar struct {
    	// Name of the environment variable. Must be a C_IDENTIFIER.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"valueFrom": "Source for the environment variable's value. Cannot be used if value is not empty.",
    }
    
    func (EnvVar) SwaggerDoc() map[string]string {
    	return map_EnvVar
    }
    
    var map_EnvVarSource = map[string]string{
    	"":                 "EnvVarSource represents a source for the value of an EnvVar.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  }
                ],
                "description": "The Secret to select from"
              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.EnvVar": {
            "description": "EnvVar represents an environment variable present in a Container.",
            "properties": {
              "name": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top