Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for assignments (0.31 sec)

  1. doc/go_spec.html

    IncDec statement    Assignment
    x++                 x += 1
    x--                 x -= 1
    </pre>
    
    
    <h3 id="Assignment_statements">Assignment statements</h3>
    
    <p>
    An <i>assignment</i> replaces the current value stored in a <a href="#Variables">variable</a>
    with a new value specified by an <a href="#Expressions">expression</a>.
    An assignment statement may assign a single value to a single variable, or multiple values to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-28759`](https://youtrack.jetbrains.com/issue/KT-28759) No not-null smartcast from direct assignment if it's split into declaration and value assignment
    - [`KT-28760`](https://youtrack.jetbrains.com/issue/KT-28760) No not-null smartcast from direct assignment of `this`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		b.AddEdgeTo(lab.target)
    
    	case ir.OAS:
    		n := n.(*ir.AssignStmt)
    		if n.X == n.Y && n.X.Op() == ir.ONAME {
    			// An x=x assignment. No point in doing anything
    			// here. In addition, skipping this assignment
    			// prevents generating:
    			//   VARDEF x
    			//   COPY x -> x
    			// which is bad because x is incorrectly considered
    			// dead before the vardef. See issue #14904.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// This field follows standard Kubernetes label syntax.
    	// Valid values are either:
    	//
    	// * Un-prefixed protocol names - reserved for IANA standard service names (as per
    	// RFC-6335 and https://www.iana.org/assignments/service-names).
    	//
    	// * Kubernetes-defined prefixed names:
    	//   * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-
    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/types_swagger_doc_generated.go

    richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n  * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n  * 'kubernetes.io/ws'  - WebSocket...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    // are nonsensical and link-local addresses tend to be used for node-centric
    // purposes (e.g. metadata service).
    //
    // IPv6 references
    // - https://www.iana.org/assignments/iana-ipv6-special-registry/iana-ipv6-special-registry.xhtml
    // - https://www.iana.org/assignments/ipv6-multicast-addresses/ipv6-multicast-addresses.xhtml
    func ValidateNonSpecialIP(ipAddress string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // This field follows standard Kubernetes label syntax.
      // Valid values are either:
      //
      // * Un-prefixed protocol names - reserved for IANA standard service names (as per
      // RFC-6335 and https://www.iana.org/assignments/service-names).
      //
      // * Kubernetes-defined prefixed names:
      //   * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-
    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/api/core/v1/types.go

    	// This field follows standard Kubernetes label syntax.
    	// Valid values are either:
    	//
    	// * Un-prefixed protocol names - reserved for IANA standard service names (as per
    	// RFC-6335 and https://www.iana.org/assignments/service-names).
    	//
    	// * Kubernetes-defined prefixed names:
    	//   * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-
    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. prow/config/calico.yaml

                    items:
                      type: string
                    type: array
                  blockSize:
                    description: The block size to use for IP address assignments from
                      this pool. Defaults to 26 for IPv4 and 122 for IPv6.
                    type: integer
                  cidr:
                    description: The pool CIDR.
                    type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	if !http2isASCIIPrint(s) {
    		return "", false
    	}
    	return strings.ToLower(s), true
    }
    
    // A list of the possible cipher suite ids. Taken from
    // https://www.iana.org/assignments/tls-parameters/tls-parameters.txt
    
    const (
    	http2cipher_TLS_NULL_WITH_NULL_NULL               uint16 = 0x0000
    	http2cipher_TLS_RSA_WITH_NULL_MD5                 uint16 = 0x0001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top