Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 153 for dieser (0.82 sec)

  1. src/cmd/compile/internal/types2/decl.go

    			fmt.Println() // empty line between top-level objects for readability
    		}
    		check.trace(obj.Pos(), "-- checking %s (%s, objPath = %s)", obj, obj.color(), pathString(check.objPath))
    		check.indent++
    		defer func() {
    			check.indent--
    			check.trace(obj.Pos(), "=> %s (%s)", obj, obj.color())
    		}()
    	}
    
    	// Checking the declaration of obj means inferring its type
    	// (and possibly its value, for constants).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            def cycle = new Tree(value: "cycle", left: new Tree(value: "left"))
            cycle.right = cycle
            task.nested = new Tree(value: "first", left: new Tree(value: "left"), right: new Tree(value: "deeper", left: cycle, right: new Tree(value: "no-cycle")))
    
            when:
            visitProperties(task)
    
            then:
            _ * visitor.visitNested() >> true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/tsan_test.go

    		{src: "tsan15.go", needsRuntime: true},
    	}
    	for _, tc := range cases {
    		tc := tc
    		name := strings.TrimSuffix(tc.src, ".go")
    		t.Run(name, func(t *testing.T) {
    			t.Parallel()
    
    			dir := newTempDir(t)
    			defer dir.RemoveAll(t)
    
    			outPath := dir.Join(name)
    			mustRun(t, config.goCmd("build", "-o", outPath, srcPath(tc.src)))
    
    			cmd := hangProneCmd(outPath)
    			if tc.needsRuntime {
    				config.skipIfRuntimeIncompatible(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 21:14:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testsanitizers/libfuzzer_test.go

    	}
    	for _, tc := range cases {
    		tc := tc
    		name := strings.TrimSuffix(tc.goSrc, ".go")
    		t.Run(name, func(t *testing.T) {
    			t.Parallel()
    
    			dir := newTempDir(t)
    			defer dir.RemoveAll(t)
    
    			// build Go code in libfuzzer mode to a c-archive
    			outPath := dir.Join(name)
    			archivePath := dir.Join(name + ".a")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 00:12:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/rangefunc/rewrite.go

    # Defers
    
    The last wrinkle is handling defer statements. If we have
    
    	for range f {
    		defer print("A")
    	}
    
    we cannot rewrite that into
    
    	f(func() {
    		defer print("A")
    	})
    
    because the deferred code will run at the end of the iteration, not
    the end of the containing function. To fix that, the runtime provides
    a special hook that lets us obtain a defer "token" representing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/schedule.go

    	// reusable priority queue
    	priq := new(ValHeap)
    
    	// "priority" for a value
    	score := f.Cache.allocInt8Slice(f.NumValues())
    	defer f.Cache.freeInt8Slice(score)
    
    	// maps mem values to the next live memory value
    	nextMem := f.Cache.allocValueSlice(f.NumValues())
    	defer f.Cache.freeValueSlice(nextMem)
    
    	// inBlockUses records whether a value is used in the block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	dwarff, err := os.Open(dsym)
    	if err != nil {
    		return err
    	}
    	defer dwarff.Close()
    	outf, err := os.OpenFile(outexe, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0755)
    	if err != nil {
    		return err
    	}
    	defer outf.Close()
    	dwarfm, err := macho.NewFile(dwarff)
    	if err != nil {
    		return err
    	}
    	defer dwarfm.Close()
    
    	// The string table needs to be the last thing in the file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/asm_test.go

    		t.Skip("Skipping test in short mode")
    	}
    	testenv.MustHaveGoBuild(t)
    
    	dir, err := os.MkdirTemp("", "testlargebranch")
    	if err != nil {
    		t.Fatalf("Could not create directory: %v", err)
    	}
    	defer os.RemoveAll(dir)
    
    	// Generate a very large function.
    	buf := bytes.NewBuffer(make([]byte, 0, genBufSize))
    	genLargeBranch(buf)
    
    	tmpfile := filepath.Join(dir, "x.s")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:39:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

                // currently only testing the IDE mode and (2) the test results between different modes should not differ for session
                // invalidation in the first place.
                testPrefix = resultFileSuffix,
            )
        }
    
        private fun checkSessionValidityBeforeModification(
            sessions: List<SESSION>,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/typecheck.go

    func typecheck(n ir.Node, top int) (res ir.Node) {
    	if n == nil {
    		return nil
    	}
    
    	// only trace if there's work to do
    	if base.EnableTrace && base.Flag.LowerT {
    		defer tracePrint("typecheck", n)(&res)
    	}
    
    	lno := ir.SetPos(n)
    	defer func() { base.Pos = lno }()
    
    	// Skip typecheck if already done.
    	// But re-typecheck ONAME/OTYPE/OLITERAL/OPACK node in case context has changed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top