Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 216 for assignments (0.16 sec)

  1. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/EvaluationFailureMessageGenerator.kt

            is ErrorReason.ReadOnlyPropertyAssignment -> "assignment to read-only property '${errorReason.property.name}"
            ErrorReason.UnitAssignment -> "assignment of a Unit value"
            ErrorReason.UnresolvedAssignmentLhs -> "unresolved assignment target"
            ErrorReason.UnresolvedAssignmentRhs -> "unresolved assigned value"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/reflectObject.kt

            val referenceResolution = PropertyReferenceResolution(objectOrigin, it)
            when (val assignment = context.resolveAssignment(referenceResolution)) {
                is Assigned -> it to PropertyValueReflection(reflect(assignment.objectOrigin, context), assignment.assignmentMethod)
                else -> if (it.hasDefaultValue) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/stmt0.go

    }
    
    func assignments1() {
    	b, i, f, c, s := false, 1, 1.0, 1i, "foo"
    	b = i /* ERRORx `cannot use .* in assignment` */
    	i = f /* ERRORx `cannot use .* in assignment` */
    	f = c /* ERRORx `cannot use .* in assignment` */
    	c = s /* ERRORx `cannot use .* in assignment` */
    	s = b /* ERRORx `cannot use .* in assignment` */
    
    	v0, v1, v2 := 1 /* ERROR "assignment mismatch" */ , 2, 3, 4
    	_, _, _ = v0, v1, v2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Protocol.kt

      /**
       * Returns the string used to identify this protocol for ALPN, like "http/1.1", "spdy/3.1" or
       * "h2".
       *
       * See also [IANA tls-extensiontype-values][iana].
       *
       * [iana]: https://www.iana.org/assignments/tls-extensiontype-values
       */
      override fun toString(): String = protocol
    
      companion object {
        /**
         * Returns the protocol identified by `protocol`.
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    x++                 x += 1
    x--                 x -= 1
    </pre>
    
    
    <h3 id="Assignments">Assignments</h3>
    
    <pre class="ebnf">
    Assignment = ExpressionList assign_op ExpressionList .
    
    assign_op = [ add_op | mul_op ] "=" .
    </pre>
    
    <p>
    Each left-hand side operand must be <a href="#Address_operators">addressable</a>,
    a map index expression, or (for <code>=</code> assignments only) the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/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: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/staticinit/sched.go

    	if !s.seenMutation {
    		s.seenMutation = mayModifyPkgVar(rhs)
    	}
    
    	if allBlank(lhs) && !AnySideEffects(rhs) {
    		return true // discard
    	}
    
    	// Only worry about simple "l = r" assignments. The OAS2*
    	// assignments mostly necessitate dynamic execution anyway.
    	if len(lhs) > 1 {
    		return false
    	}
    
    	lno := ir.SetPos(n)
    	defer func() { base.Pos = lno }()
    
    	nam := lhs[0].(*ir.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. src/net/lookup.go

    )
    
    // protocols contains minimal mappings between internet protocol
    // names and numbers for platforms that don't have a complete list of
    // protocol numbers.
    //
    // See https://www.iana.org/assignments/protocol-numbers
    //
    // On Unix, this map is augmented by readProtocols via lookupProtocol.
    var protocols = map[string]int{
    	"icmp":      1,
    	"igmp":      2,
    	"tcp":       6,
    	"udp":       17,
    	"ipv6-icmp": 58,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. src/internal/reflectlite/value.go

    	default:
    		// Value is direct, and so is the interface.
    		e.Data = v.ptr
    	}
    	// Now, fill in the type portion. We're very careful here not
    	// to have any operation between the e.word and e.typ assignments
    	// that would let the garbage collector observe the partially-built
    	// interface value.
    	e.Type = t
    	return i
    }
    
    // unpackEface converts the empty interface i to a Value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. src/net/lookup_test.go

    		sep = " "
    	}
    	fmt.Fprintf(&buf, "]")
    	return buf.String()
    }
    
    func TestLookupPort(t *testing.T) {
    	// See https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml
    	//
    	// Please be careful about adding new test cases.
    	// There are platforms which have incomplete mappings for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top