Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 677 for assignments (0.32 sec)

  1. releasenotes/notes/passthrough-subsets.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 25691
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 10 05:39:51 UTC 2020
    - 220 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/compoundAssignmentException.kt

    fun test(): Boolean {
        var n = 456
        <expr>n %= 45</expr>
        return n < 45
    }
    
    // IGNORE_FE10
    // FE1.0 `isUsedAsExpression` considers built-in postfix inc/dec and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 208 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/compoundAssignmentToProperty.kt

    }
    
    fun main() {
        val c = C()
        <expr>c.property -= 20</expr>
        println(C().property)
    }
    
    // IGNORE_FE10
    // FE1.0 `isUsedAsExpression` considers built-in postfix inc/dec and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 368 bytes
    - Viewed (0)
  4. test/fixedbugs/issue5244.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5244: the init order computation uses the wrong
    // order for top-level blank identifier assignments.
    // The example used to panic because it tries calling a
    // nil function instead of assigning to f before.
    
    package main
    
    var f = func() int { return 1 }
    var _ = f() + g()
    var g = func() int { return 2 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 20:21:51 UTC 2013
    - 497 bytes
    - Viewed (0)
  5. test/fixedbugs/issue19671.go

    // compile
    
    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Used to crash when compiling assignments involving [0]T,
    // where T is not SSA-able.
    
    package a
    
    func f() {
    	var i int
    	arr := [0][2]int{}
    	arr[i][0] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 16:53:22 UTC 2017
    - 331 bytes
    - Viewed (0)
  6. test/fixedbugs/issue13587.go

    // errorcheck -0 -l -d=wb
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test write barrier for implicit assignments to result parameters
    // that have escaped to the heap.
    
    package issue13587
    
    import "errors"
    
    func escape(p *error)
    
    func F() (err error) {
    	escape(&err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 442 bytes
    - Viewed (0)
  7. test/fixedbugs/issue19696.go

    // compile
    
    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Used to crash when compiling assignments involving [0]T,
    // where T is not SSA-able.
    
    package p
    
    type s struct {
    	a, b, c, d, e int
    }
    
    func f() {
    	var i int
    	arr := [0]s{}
    	arr[i].a++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 16:53:22 UTC 2017
    - 361 bytes
    - Viewed (0)
  8. test/fixedbugs/issue8475.go

    // build
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 8745: comma-ok assignments should produce untyped bool as 2nd result.
    
    package main
    
    type mybool bool
    
    func main() {
    	var ok mybool
    	_ = ok
    
    	var i interface{}
    	_, ok = i.(int)
    
    	var m map[int]int
    	_, ok = m[0]
    
    	var c chan int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 422 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/postfixDecrementException.kt

    fun test(): Int {
        var result = 58
        <expr>result--</expr>
        return result
    }
    
    // IGNORE_FE10
    // FE1.0 `isUsedAsExpression` considers built-in postfix inc/dec and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 209 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/postfixIncrementException.kt

    fun test(): Int {
        var result = 58
        <expr>result++</expr>
        return result
    }
    
    // IGNORE_FE10
    // FE1.0 `isUsedAsExpression` considers built-in postfix inc/dec and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 209 bytes
    - Viewed (0)
Back to top