Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for escapers (0.33 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    \"unknown type\"\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:\n\t  \"true\", \"false\", \"null\", \"in\", \"as\", \"break\", \"const\", \"continue\",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  2. doc/go_spec.html

    the digits in the corresponding base.
    </p>
    
    <p>
    Although these representations all result in an integer, they have
    different valid ranges.  Octal escapes must represent a value between
    0 and 255 inclusive.  Hexadecimal escapes satisfy this condition
    by construction. The escapes <code>\u</code> and <code>\U</code>
    represent Unicode code points so within them some values are illegal,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    accessible.\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-' escapes to '__dash__' - '/' escapes to '__slash__' - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:\n\t  \"true\", \"false\", \"null\", \"in\", \"as\", \"break\", \"const\", \"continue\",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will
      // produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless
      // of whether the variable exists or not. Cannot be updated.
    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

    	// the reference in the input string will be unchanged.  Double $$ are
    	// reduced to a single $, which allows for escaping the $(VAR_NAME)
    	// syntax: i.e. "$$(VAR_NAME)" will produce the string literal
    	// "$(VAR_NAME)".  Escaped references will never be expanded,
    	// regardless of whether the variable exists or not.
    	// +optional
    	Value string
    	// Optional: Specifies a source the value of this var should come from.
    	// +optional
    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/types_swagger_doc_generated.go

    	"args":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will
      // produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless
      // of whether the variable exists or not. Cannot be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				invalid("spec.validation.openAPIV3Schema.properties[a].properties[b].x-kubernetes-validations[0].rule"),
    			},
    		},
    		{
    			name: "x-kubernetes-validations rule validated for escaped property name",
    			opts: validationOptions{requireStructuralSchema: true},
    			input: apiextensions.CustomResourceValidation{
    				OpenAPIV3Schema: &apiextensions.JSONSchemaProps{
    					Type: "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// the reference in the input string will be unchanged. Double $$ are reduced
    	// to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.
    	// "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)".
    	// Escaped references will never be expanded, regardless of whether the variable
    	// exists or not.
    	// Defaults to "".
    	// +optional
    	Value string `json:"value,omitempty" protobuf:"bytes,2,opt,name=value"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    				s.vars[memVar] = s.newValue1A(ssa.OpVarDef, types.TypeMem, n, s.mem())
    			}
    			s.zero(n.Type(), s.decladdrs[n])
    		}
    	}
    }
    
    // paramsToHeap produces code to allocate memory for heap-escaped parameters
    // and to copy non-result parameters' values from the stack.
    func (s *state) paramsToHeap() {
    	do := func(params []*types.Field) {
    		for _, f := range params {
    			if f.Nname == nil {
    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