Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 276 for Kappen (4.09 sec)

  1. src/cmd/trace/tasks.go

    			if summary.Start != nil {
    				rawEvents = append(rawEvents, summary.Start)
    			}
    			if summary.End != nil {
    				rawEvents = append(rawEvents, summary.End)
    			}
    			rawEvents = append(rawEvents, summary.Logs...)
    			for _, r := range summary.Regions {
    				if r.Start != nil {
    					rawEvents = append(rawEvents, r.Start)
    				}
    				if r.End != nil {
    					rawEvents = append(rawEvents, r.End)
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    			} else {
    				base.Errorf("%s", str)
    			}
    			fmt.Printf("FAIL\t%s [setup failed]\n", p.ImportPath)
    			continue
    		}
    		builds = append(builds, buildTest)
    		runs = append(runs, runTest)
    		prints = append(prints, printTest)
    	}
    
    	// Order runs for coordinating start JSON prints.
    	ch := make(chan struct{})
    	close(ch)
    	for _, a := range runs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/intervals.go

    		// then add cur to result and move on.
    		if !cur.i.Overlaps(second.i) && !cur.i.adjacent(second.i) {
    			ret = append(ret, cur.i)
    			cur = second
    			continue
    		}
    		// cur overlaps with second; merge second into cur
    		cur.i.MergeInto(second.i)
    	}
    	ret = append(ret, cur.i)
    	return ret
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/dom_test.go

    // b_n -> [b_n+1].
    func genLinear(size int) []bloc {
    	var blocs []bloc
    	blocs = append(blocs,
    		Bloc("entry",
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Goto(blockn(0)),
    		),
    	)
    	for i := 0; i < size; i++ {
    		blocs = append(blocs, Bloc(blockn(i),
    			Goto(blockn(i+1))))
    	}
    
    	blocs = append(blocs,
    		Bloc(blockn(size), Goto("exit")),
    		Bloc("exit", Exit("mem")),
    	)
    
    	return blocs
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm.go

    	// rather than happen on the heap.
    	var out [p256UncompressedLength]byte
    	return p.bytes(&out)
    }
    
    func (p *P256Point) bytes(out *[p256UncompressedLength]byte) []byte {
    	// The proper representation of the point at infinity is a single zero byte.
    	if p.isInfinity() == 1 {
    		return append(out[:0], 0)
    	}
    
    	x, y := new(p256Element), new(p256Element)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/resolver.go

    		for _, obj := range objList {
    			if tname, _ := obj.(*TypeName); tname != nil {
    				if check.objMap[tname].tdecl.Alias {
    					aliasList = append(aliasList, tname)
    				} else {
    					check.objDecl(obj, nil)
    				}
    			} else {
    				othersList = append(othersList, obj)
    			}
    		}
    		// phase 2: alias type declarations
    		for _, obj := range aliasList {
    			check.objDecl(obj, nil)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    		cc = append(cc, newComponent(suffix+"_type", asmKind(arch.ptrSize), "interface type", off, arch.ptrSize, suffix))
    		cc = append(cc, newComponent(suffix+"_data", asmKind(arch.ptrSize), "interface data", off+arch.ptrSize, arch.ptrSize, suffix))
    
    	case asmInterface:
    		cc = append(cc, newComponent(suffix+"_itable", asmKind(arch.ptrSize), "interface itable", off, arch.ptrSize, suffix))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. src/crypto/sha512/sha512.go

    	b := make([]byte, 0, marshaledSize)
    	switch d.function {
    	case crypto.SHA384:
    		b = append(b, magic384...)
    	case crypto.SHA512_224:
    		b = append(b, magic512_224...)
    	case crypto.SHA512_256:
    		b = append(b, magic512_256...)
    	case crypto.SHA512:
    		b = append(b, magic512...)
    	default:
    		return nil, errors.New("crypto/sha512: invalid hash function")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/workcmd/edit.go

    	}
    	for _, d := range workFile.Use {
    		f.Use = append(f.Use, useJSON{DiskPath: d.Path, ModPath: d.ModulePath})
    	}
    
    	for _, r := range workFile.Replace {
    		f.Replace = append(f.Replace, replaceJSON{r.Old, r.New})
    	}
    	data, err := json.MarshalIndent(&f, "", "\t")
    	if err != nil {
    		base.Fatalf("go: internal error: %v", err)
    	}
    	data = append(data, '\n')
    	os.Stdout.Write(data)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/validtype.go

    		// must also be in path (invariant). But not every type in path is in nest, since
    		// nest may be pruned (see below, *TypeParam case).
    		if !check.validType0(pos, t.Origin().fromRHS, append(nest, t), append(path, t)) {
    			return false
    		}
    
    		// see TODO above
    		// check.valids.add(t) // t is valid
    
    	case *TypeParam:
    		// A type parameter stands for the type (argument) it was instantiated with.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top