Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 823 for observed (0.75 sec)

  1. src/cmd/compile/internal/base/base.go

    // actually works for you (it may not: the Go compiler is not typical), and
    // whatever the outcome, please leave a comment on bug #56546.  This code
    // uses supported interfaces, but depends more than we like on
    // current+observed behavior of the garbage collector, so if many people need
    // this feature, we should consider/propose a better way to accomplish it.
    func AdjustStartingHeap(requestedHeapGoal uint64) {
    	logHeapTweaks := Debug.GCAdjust == 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. doc/go_mem.html

    </pre>
    
    <p>
    the assignment to <code>a</code> is not followed by
    any synchronization event, so it is not guaranteed to be
    observed by any other goroutine.
    In fact, an aggressive compiler might delete the entire <code>go</code> statement.
    </p>
    
    <p>
    If the effects of a goroutine must be observed by another goroutine,
    use a synchronization mechanism such as a lock or channel
    communication to establish a relative ordering.
    </p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/rangefunc/rewrite.go

    			stack = stack[:len(stack)-1]
    			if n == forStack[len(forStack)-1] {
    				forStack = forStack[:len(forStack)-1]
    			}
    		}
    		return true
    	})
    
    	// Assign numbers to all the labels we observed.
    	used := -1 // returns use -1
    	for _, l := range labels {
    		used -= 3
    		r.branchNext[branch{syntax.Break, l}] = used
    		r.branchNext[branch{syntax.Continue, l}] = used + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadcode.go

    	}
    
    	// Find all live values
    	q := f.Cache.allocValueSlice(f.NumValues())[:0]
    	defer f.Cache.freeValueSlice(q)
    
    	// Starting set: all control values of reachable blocks are live.
    	// Calls are live (because callee can observe the memory state).
    	for _, b := range f.Blocks {
    		if !reachable[b.ID] {
    			continue
    		}
    		for _, v := range b.ControlValues() {
    			if !live[v.ID] {
    				live[v.ID] = true
    				q = append(q, v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/type.go

    // Copyright 2009 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 18:49:25 UTC 2022
    - 178 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testshared/testdata/depBase/gccgo.go

    // Copyright 2016 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.
    
    //go:build gccgo
    
    package depBase
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 222 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testshared/testdata/depBase/stubs.go

    // Copyright 2016 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.
    
    //go:build gc
    
    package depBase
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 216 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testso/testdata/sovar/cgoso_c.c

    // 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.
    
    //go:build ignore
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:41 UTC 2023
    - 221 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/testdata/issue44956/plugin1.go

    // Copyright 2021 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.
    
    package main
    
    import _ "testplugin/issue44956/base"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 228 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/testdata/issue44956/base/base.go

    // Copyright 2021 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.
    
    package base
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 205 bytes
    - Viewed (0)
Back to top