Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for W1 (0.04 sec)

  1. src/cmd/go/testdata/script/mod_tidy_convergence_loop.txt

    replace (
    	example.net/w v0.1.0 => ./w1
    	example.net/w v0.2.0-pre => ./w2-pre
    	example.net/x v0.1.0 => ./x1
    	example.net/x v0.2.0-pre => ./x2-pre
    	example.net/y v0.1.0 => ./y1
    	example.net/y v0.2.0-pre => ./y2-pre
    	example.net/z v0.1.0 => ./z1
    	example.net/z v0.2.0-pre => ./z2-pre
    )
    -- w1/go.mod --
    module example.net/w
    
    go 1.16
    
    require (
    	example.net/y v0.2.0-pre
    	example.net/z v0.2.0-pre
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. src/image/jpeg/idct.go

    const blockSize = 64 // A DCT block is 8x8.
    
    type block [blockSize]int32
    
    const (
    	w1 = 2841 // 2048*sqrt(2)*cos(1*pi/16)
    	w2 = 2676 // 2048*sqrt(2)*cos(2*pi/16)
    	w3 = 2408 // 2048*sqrt(2)*cos(3*pi/16)
    	w5 = 1609 // 2048*sqrt(2)*cos(5*pi/16)
    	w6 = 1108 // 2048*sqrt(2)*cos(6*pi/16)
    	w7 = 565  // 2048*sqrt(2)*cos(7*pi/16)
    
    	w1pw7 = w1 + w7
    	w1mw7 = w1 - w7
    	w2pw6 = w2 + w6
    	w2mw6 = w2 - w6
    	w3pw5 = w3 + w5
    	w3mw5 = w3 - w5
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 5K bytes
    - Viewed (0)
  3. test/typeparam/metrics.go

    	}
    
    	m2 := _Metric2[int, float64]{}
    	m2.Add(1, 1)
    	m2.Add(2, 2)
    	m2.Add(3, 3)
    	m2.Add(3, 3)
    	k1, k2 := m2.Metrics()
    
    	sort.Ints(k1)
    	w1 := []int{1, 2, 3}
    	if !_SlicesEqual(k1, w1) {
    		panic(fmt.Sprintf("_Metric2.Metrics first slice = %v, want %v", k1, w1))
    	}
    
    	sort.Float64s(k2)
    	w2 := []float64{1, 2, 3}
    	if !_SlicesEqual(k2, w2) {
    		panic(fmt.Sprintf("_Metric2.Metrics first slice = %v, want %v", k2, w2))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. test/typeparam/sets.go

    	}
    	if s1.Contains(5) {
    		panic(fmt.Sprintf("(%v).Contains(5) == true, want false", s1))
    	}
    	vals := s1.Values()
    	sort.Ints(vals)
    	w1 := []int{1, 2, 3, 4}
    	if !_SliceEqual(vals, w1) {
    		panic(fmt.Sprintf("(%v).Values() == %v, want %v", s1, vals, w1))
    	}
    }
    
    func TestEqual() {
    	s1 := _Make[string]()
    	s2 := _Make[string]()
    	if !_Equal(s1, s2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/strip_tf_attributes.mlir

    // CHECK-LABEL: strips_attributes
    // CHECK-NOT: tf
    func.func @strips_attributes(%arg0: tensor<32x28x28x1xf32> {tf._user_specified_name = "x"},
                                 %arg1: tensor<3x3x1x5xf32> {tf._user_specified_name = "w1"},
                                 %arg2: tensor<5xf32> {tf._user_specified_name = "b1"},
                                 %arg3: tensor<3920x10xf32> {tf._user_specified_name = "w2"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 25 20:04:10 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/watch/mux_test.go

    		t.Fatalf("Unable start event watcher: '%v' (will not retry!)", err)
    	}
    	go func(w0, w1 Interface) {
    		// We know Broadcaster is in the distribute loop once one watcher receives
    		// an event. Stop the other watcher while distribute is trying to
    		// send to it.
    		select {
    		case <-w0.ResultChan():
    			w1.Stop()
    		case <-w1.ResultChan():
    			w0.Stop()
    		}
    		close(done)
    	}(w, w2)
    	m.Action(Added, &myType{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 16 15:26:25 UTC 2022
    - 8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/zerorange_test.go

    }
    
    func testZeroRange136(t *testing.T) (r, s, t2, u, v, w, x, y, r1, s1, t1, u1, v1, w1, x1, y1, z1 int64) {
    	defer func() {
    		glob = 4
    	}()
    	globp = &r
    	globp = &s
    	globp = &t2
    	globp = &u
    	globp = &v
    	globp = &w
    	globp = &x
    	globp = &y
    	globp = &r1
    	globp = &s1
    	globp = &t1
    	globp = &u1
    	globp = &v1
    	globp = &w1
    	globp = &x1
    	globp = &y1
    	globp = &z1
    	return
    }
    
    type S struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  8. test/divmod.go

    		gen(val|1<<uint(pos), nbits+1, maxbits, pos-1, f)
    	}
    }
    
    // generate all uint64 values x, y where x has at most n1 bits set in the low w1
    // and y has at most n2 bits set in the low w2 and call f(x, y) for each.
    func gen2(n1, w1, n2, w2 int, f func(uint64, uint64)) {
    	gen1(n1, w1, func(x uint64) {
    		gen1(n2, w2, func(y uint64) {
    			f(x, y)
    		})
    	})
    }
    
    // x and y are uint64s with at most 2 bits set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 9.3K bytes
    - Viewed (0)
  9. src/net/rpc/jsonrpc/all_test.go

    	ServeConn(srv)                                                    // must return, not loop
    }
    
    // Copied from package net.
    func myPipe() (*pipe, *pipe) {
    	r1, w1 := io.Pipe()
    	r2, w2 := io.Pipe()
    
    	return &pipe{r1, w2}, &pipe{r2, w1}
    }
    
    type pipe struct {
    	*io.PipeReader
    	*io.PipeWriter
    }
    
    type pipeAddr int
    
    func (pipeAddr) Network() string {
    	return "pipe"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:09:53 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  10. src/crypto/sha256/sha256block_arm64.s

    	VREV32	V5.B16, V5.B16
    	VREV32	V6.B16, V6.B16
    	VREV32	V7.B16, V7.B16
    
    	VADD	V16.S4, V4.S4, V9.S4                        // V18(W0+K0...W3+K3)
    	SHA256SU0	V5.S4, V4.S4                        // V4: (su0(W1)+W0,...,su0(W4)+W3)
    	HASHUPDATE                                          // H4
    
    	VADD	V17.S4, V5.S4, V9.S4                        // V18(W4+K4...W7+K7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top