Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 417 for speaking (0.25 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/NullabilityChangesTest.kt

                    }
                """
            ) {
                assertHasErrors(
                    "Field nonFinalField: Nullability breaking change.",
                    "Field finalField: From non-nullable to nullable breaking change.",
                    "Method com.example.Source.foo(): From non-null returning to null returning breaking change."
                )
                assertHasNoWarning()
                assertHasNoInformation()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 9.1K bytes
    - Viewed (0)
  2. test/escape5.go

    	return leaktoret22(q, p)
    }
    
    func leaktoret22c(p, q *int) (*int, *int) { // ERROR "leaking param: p to result ~r1" "leaking param: q to result ~r0"
    	r, s := leaktoret22(q, p)
    	return r, s
    }
    
    func leaktoret22d(p, q *int) (r, s *int) { // ERROR "leaking param: p to result s" "leaking param: q to result r"
    	r, s = leaktoret22(q, p)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinModifiersChangeTest.kt

                    "Method com.example.Source.plus(java.lang.String,java.util.List): Breaking Kotlin modifier change.",
                    "Method com.example.Source.plus(int,java.util.List): Breaking Kotlin modifier change.",
                    "Method com.example.SourceKt.invoke(java.lang.String,int): Breaking Kotlin modifier change.",
                    "Method com.example.SourceKt.invoke(long,int): Breaking Kotlin modifier change.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  4. test/escape_calls.go

    	var got [][]string
    	f := prototype
    	f = func(ss []string) { got = append(got, ss) } // ERROR "leaking param: ss" "func literal does not escape"
    	s := "string"
    	f([]string{s}) // ERROR "\[\]string{...} escapes to heap"
    }
    
    func strmin(a, b, c string) string { // ERROR "leaking param: a to result ~r0 level=0" "leaking param: b to result ~r0 level=0" "leaking param: c to result ~r0 level=0"
    	return min(a, b, c)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 22:06:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. test/escape_array.go

    var Ssink *string
    
    type U [2]*string
    
    func bar(a, b *string) U { // ERROR "leaking param: a to result ~r0 level=0$" "leaking param: b to result ~r0 level=0$"
    	return U{a, b}
    }
    
    func foo(x U) U { // ERROR "leaking param: x to result ~r0 level=0$"
    	return U{x[1], x[0]}
    }
    
    func bff(a, b *string) U { // ERROR "leaking param: a to result ~r0 level=0$" "leaking param: b to result ~r0 level=0$"
    	return foo(foo(bar(a, b)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  6. test/escape_param.go

    // in -> out
    func param0(p *int) *int { // ERROR "leaking param: p to result ~r0"
    	return p
    }
    
    func caller0a() {
    	i := 0
    	_ = param0(&i)
    }
    
    func caller0b() {
    	i := 0 // ERROR "moved to heap: i$"
    	sink = param0(&i)
    }
    
    // in, in -> out, out
    func param1(p1, p2 *int) (*int, *int) { // ERROR "leaking param: p1 to result ~r0" "leaking param: p2 to result ~r1"
    	return p1, p2
    }
    
    func caller1() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  7. .github/PULL_REQUEST_TEMPLATE.md

    ## Description
    
    
    ## Motivation and Context
    
    
    ## How to test this PR?
    
    
    ## Types of changes
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Optimization (provides speedup with no functional changes)
    - [ ] Breaking change (fix or feature that would cause existing functionality to change)
    
    ## Checklist:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 14 17:29:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. test/escape_unsafe.go

    // reflect.Value.UnsafeAddr from uintptr to Pointer.
    
    // BAD: should be "leaking param: p to result ~r0 level=0$"
    func valuePointer(p *int) unsafe.Pointer { // ERROR "leaking param: p$"
    	return unsafe.Pointer(reflect.ValueOf(p).Pointer())
    }
    
    // BAD: should be "leaking param: p to result ~r0 level=0$"
    func valueUnsafeAddr(p *int) unsafe.Pointer { // ERROR "leaking param: p$"
    	return unsafe.Pointer(reflect.ValueOf(p).Elem().UnsafeAddr())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 17:25:59 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. test/escape2.go

    	return b.ii
    }
    
    func (b Bar) AlsoLeak() *int { // ERROR "leaking param: b to result ~r0 level=0$"
    	return b.ii
    }
    
    func (b Bar) LeaksToo() *int { // ERROR "leaking param: b to result ~r0 level=0$"
    	v := 0 // ERROR "moved to heap: v$"
    	b.ii = &v
    	return b.ii
    }
    
    func (b *Bar) LeaksABit() *int { // ERROR "leaking param: b to result ~r0 level=1$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  10. test/escape2n.go

    	return b.ii
    }
    
    func (b Bar) AlsoLeak() *int { // ERROR "leaking param: b to result ~r0 level=0$"
    	return b.ii
    }
    
    func (b Bar) LeaksToo() *int { // ERROR "leaking param: b to result ~r0 level=0$"
    	v := 0 // ERROR "moved to heap: v$"
    	b.ii = &v
    	return b.ii
    }
    
    func (b *Bar) LeaksABit() *int { // ERROR "leaking param: b to result ~r0 level=1$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top