Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for intvar (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	Type   int64                   `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
    	IntVal *wrapperspb.Int32Value  `protobuf:"bytes,2,opt,name=intVal,proto3" json:"intVal,omitempty"`
    	StrVal *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=strVal,proto3" json:"strVal,omitempty"`
    }
    
    func (x *IntOrString) Reset() {
    	*x = IntOrString{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K 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/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)
  7. 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)
  8. 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)
  9. pkg/apis/core/validation/validation.go

    	}
    	return allErrors
    }
    
    func ValidatePortNumOrName(port intstr.IntOrString, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if port.Type == intstr.Int {
    		for _, msg := range validation.IsValidPortNum(port.IntValue()) {
    			allErrs = append(allErrs, field.Invalid(fldPath, port.IntValue(), msg))
    		}
    	} else if port.Type == intstr.String {
    		for _, msg := range validation.IsValidPortName(port.StrVal) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    		lenAddr := s.newValue1I(ssa.OpOffPtr, s.f.Config.Types.IntPtr, s.config.PtrSize, left)
    		s.store(types.Types[types.TINT], lenAddr, len)
    	case t.IsSlice():
    		if skip&skipLen == 0 {
    			len := s.newValue1(ssa.OpSliceLen, types.Types[types.TINT], right)
    			lenAddr := s.newValue1I(ssa.OpOffPtr, s.f.Config.Types.IntPtr, s.config.PtrSize, left)
    			s.store(types.Types[types.TINT], lenAddr, len)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top