Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 784 for Reordering (0.34 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/LoggingTracer.kt

        private val logger: Logger,
        private val level: LogLevel
    ) : Tracer {
    
        // Include a sequence number in the events so the order of events can be preserved in face of log output reordering
        private
        var nextSequenceNumber = 0L
    
        override fun open(frame: String) {
            log(frame, 'O')
        }
    
        override fun close(frame: String) {
            log(frame, 'C')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 20:48:51 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. test/fixedbugs/bug221.go

    // run
    
    // 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.
    
    // function call arg reordering was picking out 1 call that
    // didn't need to be in a temporary, but it was picking
    // out the first call instead of the last call.
    // https://golang.org/issue/370
    
    package main
    
    var gen = 'a'
    
    func f(n int) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 820 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/core.go

    // Output:
    // Output is separated into several stages:
    //
    //  - levels array over entire paragraph
    //  - reordering array over entire paragraph
    //  - levels array over line
    //  - reordering array over line
    //
    // Note that for conformance to the Unicode Bidirectional Algorithm,
    // implementations are only required to generate correct reordering and
    // character directionality (odd or even levels) over a line. Generating
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  4. src/runtime/vdso_freebsd.go

    	bt.frac += x
    	if u > bt.frac {
    		bt.sec++
    	}
    }
    
    var (
    	// binuptimeDummy is used in binuptime as the address of an atomic.Load, to simulate
    	// an atomic_thread_fence_acq() call which behaves as an instruction reordering and
    	// memory barrier.
    	binuptimeDummy uint32
    
    	zeroBintime bintime
    )
    
    // based on /usr/src/lib/libc/sys/__vdso_gettimeofday.c
    //
    //go:nosplit
    func binuptime(abs bool) (bt bintime) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. test/reorder.go

    // run
    
    // Copyright 2011 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 reordering of assignments.
    
    package main
    
    import "fmt"
    
    func main() {
    	p1()
    	p2()
    	p3()
    	p4()
    	p5()
    	p6()
    	p7()
    	p8()
    	p9()
    	p10()
    	p11()
    }
    
    var gx []int
    
    func f(i int) int {
    	return gx[i]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jan 16 23:19:26 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

            ], [
                "one": fingerprint("one"),
                "three": fingerprint("three"),
                "four": fingerprint("four")
            ]) == [added("two"), removed("three")]
        }
    
        def "reordering (NormalizedPathFingerprintCompareStrategy)"() {
            expect:
            changes(NORMALIZED, [
                "new/one": fingerprint("one"),
                "new/two": fingerprint("two"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/looprotate.go

    		if _, ok := move[b.ID]; ok {
    			continue
    		}
    		f.Blocks[j] = b
    		j++
    		for _, a := range after[b.ID] {
    			f.Blocks[j] = a
    			j++
    		}
    	}
    	if j != len(oldOrder) {
    		f.Fatalf("bad reordering in looprotate")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/loadstore_test.go

    // 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.
    
    // Tests load/store ordering
    
    package main
    
    import "testing"
    
    // testLoadStoreOrder tests for reordering of stores/loads.
    func testLoadStoreOrder(t *testing.T) {
    	z := uint32(1000)
    	if testLoadStoreOrder_ssa(&z, 100) == 0 {
    		t.Errorf("testLoadStoreOrder failed")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. src/internal/coverage/cfile/apis.go

    	// then be interpreted as the start of another live function.
    	// Things will go downhill from there.
    	//
    	// This same scenario is also a potential risk if the program is
    	// running on an architecture that permits reordering of
    	// writes/stores, since the inconsistency described above could
    	// arise here. Example scenario:
    	//
    	//     func ABC() {
    	//       ...                    // prolog
    	//       if alwaysTrue() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/internal/dag/parse.go

    				if i != k && k != j && g.HasEdge(i, k) && g.HasEdge(k, j) {
    					if i == j {
    						// Can only happen along with a "use of X before deps" error above,
    						// but this error is more specific - it makes clear that reordering the
    						// rules will not be enough to fix the problem.
    						errorf("graph cycle: %s < %s < %s", j, k, i)
    					}
    					g.AddEdge(i, j)
    				}
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top