Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for w2 (0.02 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (MOVWstore [i] {s} p w2 x:(STM2 [i-8] {s} p w0 w1 mem))
      && x.Uses == 1
      && is20Bit(int64(i)-8)
      && setPos(v, x.Pos)
      && clobber(x)
      => (STM3 [i-8] {s} p w0 w1 w2 mem)
    (MOVWstore [i] {s} p w3 x:(STM3 [i-12] {s} p w0 w1 w2 mem))
      && x.Uses == 1
      && is20Bit(int64(i)-12)
      && setPos(v, x.Pos)
      && clobber(x)
      => (STM4 [i-12] {s} p w0 w1 w2 w3 mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	w2, err := cacher.Watch(context.TODO(), "pods/ns", storage.ListOptions{ResourceVersion: "999", Predicate: storage.Everything})
    	if err != nil {
    		t.Fatalf("Failed to create watch: %v", err)
    	}
    	defer w2.Stop()
    
    	shouldContinue := true
    	currentRV := uint64(0)
    	for shouldContinue {
    		select {
    		case event, ok := <-w2.ResultChan():
    			if !ok {
    				shouldContinue = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    	}
    
    	// Wrap a writer and then Reset to that writer.
    	w.Reset(&buf4)
    	w2 := NewWriter(w)
    	w2.WriteString("recur")
    	w2.Flush()
    	if buf4.String() != "recur" {
    		t.Errorf("buf4 = %q, want %q", buf4.String(), "recur")
    	}
    	w.Reset(&buf5)
    	w2.Reset(w)
    	w2.WriteString("recur2")
    	w2.Flush()
    	if buf5.String() != "recur2" {
    		t.Errorf("buf5 = %q, want %q", buf5.String(), "recur2")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	r, w := io.Pipe()
    	go func() {
    		defer w.Close()
    		w.Write([]byte(`{}`))
    		w.Write([]byte(runtime.EncodeOrDie(corev1Codec, &pods.Items[0])))
    	}()
    
    	r2, w2 := io.Pipe()
    	go func() {
    		defer w2.Close()
    		w2.Write([]byte(`{}`))
    		w2.Write([]byte(runtime.EncodeOrDie(corev1Codec, &svc.Items[0])))
    	}()
    
    	b := newDefaultBuilder().
    		Stream(r, "1").Stream(r2, "2").
    		ContinueOnError()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  5. src/html/template/exec_test.go

    	X, S        string
    	FloatZero   float64
    	ComplexZero complex128
    	// Nested structs.
    	U *U
    	// Struct with String method.
    	V0     V
    	V1, V2 *V
    	// Struct with Error method.
    	W0     W
    	W1, W2 *W
    	// Slices
    	SI      []int
    	SICap   []int
    	SIEmpty []int
    	SB      []bool
    	// Arrays
    	AI [3]int
    	// Maps
    	MSI      map[string]int
    	MSIone   map[string]int // one element, for deterministic output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. src/text/template/exec_test.go

    	X, S        string
    	FloatZero   float64
    	ComplexZero complex128
    	// Nested structs.
    	U *U
    	// Struct with String method.
    	V0     V
    	V1, V2 *V
    	// Struct with Error method.
    	W0     W
    	W1, W2 *W
    	// Slices
    	SI      []int
    	SICap   []int
    	SIEmpty []int
    	SB      []bool
    	// Arrays
    	AI [3]int
    	// Maps
    	MSI      map[string]int
    	MSIone   map[string]int // one element, for deterministic output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top