Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,364 for rend (0.05 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	for i := len(in.post) - 1; i >= 0; i-- {
    		x := in.post[i]
    
    		start, end := x.Span()
    		if debug {
    			fmt.Fprintf(os.Stderr, "post %T :%d:%d #%d :%d:%d #%d\n", x, start.Line, start.LineRune, start.Byte, end.Line, end.LineRune, end.Byte)
    		}
    
    		// Do not assign suffix comments to end of line block or whole file.
    		// Instead assign them to the last element inside.
    		switch x.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/encoding/xml/read.go

    				}
    			}
    		case EndElement:
    			return true, nil
    		}
    	}
    }
    
    // Skip reads tokens until it has consumed the end element
    // matching the most recent start element already consumed,
    // skipping nested structures.
    // It returns nil if it finds an end element matching the start
    // element; otherwise it returns an error describing the problem.
    func (d *Decoder) Skip() error {
    	var depth int64
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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/go/ast/commentmap.go

    	nodes = append(nodes, nil) // append sentinel
    
    	// set up iteration variables
    	var (
    		p     Node           // previous node
    		pend  token.Position // end of p
    		pg    Node           // previous node group (enclosing nodes of "importance")
    		pgend token.Position // end of pg
    		stack nodeStack      // stack of node groups
    	)
    
    	for _, q := range nodes {
    		var qpos token.Position
    		if q != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/nettest/conntest.go

    }
    
    // testWriteTimeout tests that Write timeouts do not affect Read.
    func testWriteTimeout(t *testing.T, c1, c2 net.Conn) {
    	go chunkedCopy(c2, rand.New(rand.NewSource(0)))
    
    	c1.SetWriteDeadline(aLongTimeAgo)
    	_, err := c1.Write(make([]byte, 1024))
    	checkForTimeoutError(t, err)
    	if _, err := c1.Read(make([]byte, 1024)); err != nil {
    		t.Errorf("unexpected Read error: %v", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/crypto/internal/mlkem768/mlkem768_test.go

    	var dk DecapsulationKey
    	var d, z [32]byte
    	rand.Read(d[:])
    	rand.Read(z[:])
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		dk := kemKeyGen(&dk, &d, &z)
    		sink ^= dk.EncapsulationKey()[0]
    	}
    }
    
    func BenchmarkEncaps(b *testing.B) {
    	d := make([]byte, 32)
    	rand.Read(d)
    	z := make([]byte, 32)
    	rand.Read(z)
    	var m [messageSize]byte
    	rand.Read(m[:])
    	ek, _ := GenerateKeyDerand(b, d, z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu-resource-read-for-write.mlir

    // RUN: tf-opt -tf-tpu-resource-read-for-write %s | FileCheck %s --dump-input=always
    
    // CHECK-LABEL: func @write_only_resource
    // CHECK-SAME: ([[ARG0:%.*]]: tensor<i32>, [[ARG1:%.*]]: tensor<f32>, [[ARG2:%.*]]: tensor<*x!tf_type.resource<tensor<i32>>>)
    func.func @write_only_resource(%arg0: tensor<i32>, %arg1: tensor<f32>, %arg2: tensor<*x!tf_type.resource<tensor<i32>>>) {
      // CHECK-NEXT: [[READ:%.*]] = "tf.ReadVariableOp"([[ARG2]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 16:54:40 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. cmd/erasure-common.go

    package cmd
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"math/rand"
    	"sync"
    	"time"
    
    	"github.com/minio/pkg/v3/sync/errgroup"
    )
    
    func (er erasureObjects) getOnlineDisks() (newDisks []StorageAPI) {
    	disks := er.getDisks()
    	var wg sync.WaitGroup
    	var mu sync.Mutex
    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    	for _, i := range r.Perm(len(disks)) {
    		i := i
    		wg.Add(1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top