Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Mars (0.07 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	c = s.newValue1(ssa.OpSliceCap, types.Types[types.TINT], r[0])
    
    	s.vars[ptrVar] = p
    	s.vars[lenVar] = l
    	s.vars[capVar] = c
    	if inplace {
    		if sn.Op() == ir.ONAME {
    			sn := sn.(*ir.Name)
    			if sn.Class != ir.PEXTERN {
    				// Tell liveness we're about to build a new slice
    				s.vars[memVar] = s.newValue1A(ssa.OpVarDef, types.TypeMem, sn, s.mem())
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.8.md

    * `kubectl run --env` no longer supports CSV parsing. To provide multiple env vars, use the `--env` flag multiple times instead of having env vars separated by commas. E.g. `--env ONE=1 --env TWO=2` instead of `--env ONE=1,TWO=2`. ([#47460](https://github.com/kubernetes/kubernetes/pull/47460), [@mengqiy](https://github.com/mengqiy))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  3. 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 {
    			allErrs = append(allErrs, field.Required(idxPath.Child("name"), ""))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-67144`](https://youtrack.jetbrains.com/issue/KT-67144) K2: potential NPE when assigning to unstable vars
    - [`KT-66971`](https://youtrack.jetbrains.com/issue/KT-66971) K2: missing SMARTCAST_IMPOSSIBLE on open val declared in another module
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.13.md

    - Added a new container based image for running e2e tests ([#69368](https://github.com/kubernetes/kubernetes/pull/69368), [@dims](https://github.com/dims))
    - The `LC_ALL` and `LC_MESSAGES` env vars can now be used to set desired locale for `kubectl` while keeping `LANG` unchanged. ([#69500](https://github.com/kubernetes/kubernetes/pull/69500), [@m1kola](https://github.com/m1kola))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.7.md

          * Added exported env vars to kubectl plugins so that plugin developers have access to global flags, namespace, the plugin descriptor and the full path to the caller binary.
    
      * Enhancement
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/moment-with-locales.min.js

    m\xedut"],mm:[e+" m\xeduts",e+" m\xeduts"],h:["'n \xfeora","'iensa \xfeora"],hh:[e+" \xfeoras",e+" \xfeoras"],d:["'n ziua","'iensa ziua"],dd:[e+" ziuas",e+" ziuas"],M:["'n mes","'iens mes"],MM:[e+" mesen",e+" mesen"],y:["'n ar","'iens ar"],yy:[e+" ars",e+" ars"]};return s?n[t][0]:a?n[t][0]:n[t][1]}function Xn(e,a,t){var s,n;return"m"===t?a?"\u0445\u0432\u0438\u043b\u0438\u043d\u0430":"\u0445\u0432\u0438\u043b\u0438\u043d\u0443":"h"===t?a?"\u0433\u043e\u0434\u0438\u043d\u0430":"\u0433\u043e\u0434\u0438\u043d\u0443":e+"...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // ResourceFieldSelector represents container resources (cpu, memory) and their output format
    // +structType=atomic
    message ResourceFieldSelector {
      // Container name: required for volumes, optional for env vars
      // +optional
      optional string containerName = 1;
    
      // Required: resource to select
      optional string resource = 2;
    
      // Specifies the output format of the exposed resources, defaults to "1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	FieldPath string
    }
    
    // ResourceFieldSelector represents container resources (cpu, memory) and their output format
    type ResourceFieldSelector struct {
    	// Container name: required for volumes, optional for env vars
    	// +optional
    	ContainerName string
    	// Required: resource to select
    	Resource string
    	// Specifies the output format of the exposed resources, defaults to "1"
    	// +optional
    	Divisor resource.Quantity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    var map_ResourceFieldSelector = map[string]string{
    	"":              "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
    	"containerName": "Container name: required for volumes, optional for env vars",
    	"resource":      "Required: resource to select",
    	"divisor":       "Specifies the output format of the exposed resources, defaults to \"1\"",
    }
    
    func (ResourceFieldSelector) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top