Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for expvar (0.24 sec)

  1. src/net/http/h2_bundle.go

    	NewWriteScheduler func() http2WriteScheduler
    
    	// CountError, if non-nil, is called on HTTP/2 server errors.
    	// It's intended to increment a metric for monitoring, such
    	// as an expvar or Prometheus metric.
    	// The errType consists of only ASCII word characters.
    	CountError func(errType string)
    
    	// Internal state. This is a pointer (rather than embedded directly)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		n := n.(*ir.UnaryExpr)
    		a := s.expr(n.X)
    		return s.newValue1(ssa.OpIData, n.Type(), a)
    
    	case ir.OMAKEFACE:
    		n := n.(*ir.BinaryExpr)
    		tab := s.expr(n.X)
    		data := s.expr(n.Y)
    		return s.newValue2(ssa.OpIMake, n.Type(), tab, data)
    
    	case ir.OSLICEHEADER:
    		n := n.(*ir.SliceHeaderExpr)
    		p := s.expr(n.Ptr)
    		l := s.expr(n.Len)
    		c := s.expr(n.Cap)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.EnvVar)(nil), (*core.EnvVar)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_EnvVar_To_core_EnvVar(a.(*v1.EnvVar), b.(*core.EnvVar), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.EnvVar)(nil), (*v1.EnvVar)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/apis/core/validation/validation.go

    		}
    	}
    	return allErrs
    }
    
    // ValidateEnv validates env vars
    func ValidateEnv(vars []core.EnvVar, fldPath *field.Path, opts PodValidationOptions) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	for i, ev := range vars {
    		idxPath := fldPath.Index(i)
    		if len(ev.Name) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top