Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,994 for rend (0.05 sec)

  1. releasenotes/notes/send-stat.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 12 16:23:08 UTC 2020
    - 178 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/writebarrier.go

    		}
    
    		// Build branch point.
    		bThen := f.NewBlock(BlockPlain)
    		bEnd := f.NewBlock(b.Kind)
    		bThen.Pos = pos
    		bEnd.Pos = b.Pos
    		b.Pos = pos
    
    		// Set up control flow for end block.
    		bEnd.CopyControls(b)
    		bEnd.Likely = b.Likely
    		for _, e := range b.Succs {
    			bEnd.Succs = append(bEnd.Succs, e)
    			e.b.Preds[e.i].b = bEnd
    		}
    
    		// set up control flow for write barrier test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/compile.go

    	// which phases to dump IR before/after, etc.
    	if f.Log() {
    		f.Logf("compiling %s\n", f.Name)
    	}
    
    	var rnd *rand.Rand
    	if checkEnabled {
    		seed := int64(crc32.ChecksumIEEE(([]byte)(f.Name))) ^ int64(checkRandSeed)
    		rnd = rand.New(rand.NewSource(seed))
    	}
    
    	// hook to print function & phase if panic happens
    	phaseName := "init"
    	defer func() {
    		if phaseName != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/cmd/internal/buildid/rewrite.go

    // range between start and end, it returns zero bytes.
    type excludedReader struct {
    	r          io.Reader
    	off        int64 // current offset
    	start, end int64 // the range to be excluded (read as zero)
    }
    
    func (r *excludedReader) Read(p []byte) (int, error) {
    	n, err := r.r.Read(p)
    	if n > 0 && r.off+int64(n) > r.start && r.off < r.end {
    		cstart := r.start - r.off
    		if cstart < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/end-to-end-tpu-reshard-variables.mlir

    Jian Cai <******@****.***> 1710363027 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/compress/flate/testdata/huffman-rand-limit.golden

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 252 bytes
    - Viewed (0)
  7. src/compress/flate/testdata/huffman-rand-max.in

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
  8. src/compress/flate/testdata/huffman-rand-limit.in

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 247 bytes
    - Viewed (0)
  9. src/compress/flate/testdata/huffman-rand-1k.wb.expect

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 1005 bytes
    - Viewed (0)
  10. src/cmd/internal/obj/wasm/wasmobj.go

    				p = appendp(p, ABlock)
    			}
    			p = appendp(p, AGet, regAddr(REG_PC_B)) // read next basic block from PC_B
    			p = appendp(p, ABrTable, obj.Addr{Val: tableIdxs})
    			p = appendp(p, AEnd) // end of Block
    		}
    		for p.Link != nil {
    			p = p.Link // function instructions
    		}
    		if len(entryPointLoopBranches) > 0 {
    			p = appendp(p, AEnd) // end of entryPointLoop
    		}
    		p = appendp(p, obj.AUNDEF)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top