Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for Uu (0.09 sec)

  1. test/chan/powser2.go

    			c = sub(c, one)
    			n++
    		}
    		put(finis, Z)
    	}(c, Z)
    	return Z
    }
    
    // Reciprocal of a power series
    //	let U = u + x*UU
    //	let Z = z + x*ZZ
    //	(u+x*UU)*(z+x*ZZ) = 1
    //	z = 1/u
    //	u*ZZ + z*UU +x*UU*ZZ = 0
    //	ZZ = -UU*(z+x*ZZ)/u
    
    func Recip(U PS) PS {
    	Z := mkPS()
    	go func(U, Z PS) {
    		ZZ := mkPS2()
    		<-Z.req
    		z := inv(get(U))
    		Z.dat <- z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  2. test/chan/powser1.go

    			c = sub(c, one)
    			n++
    		}
    		put(finis, Z)
    	}()
    	return Z
    }
    
    // Reciprocal of a power series
    //	let U = u + x*UU
    //	let Z = z + x*ZZ
    //	(u+x*UU)*(z+x*ZZ) = 1
    //	z = 1/u
    //	u*ZZ + z*UU +x*UU*ZZ = 0
    //	ZZ = -UU*(z+x*ZZ)/u
    
    func Recip(U PS) PS {
    	Z := mkPS()
    	go func() {
    		ZZ := mkPS2()
    		<-Z.req
    		z := inv(get(U))
    		Z.dat <- z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/decls1.go

    package decls1
    
    import (
    	"math"
    )
    
    // Global variables without initialization
    var (
    	a, b bool
    	c byte
    	d uint8
    	r rune
    	i int
    	j, k, l int
    	x, y float32
    	xx, yy float64
    	u, v complex64
    	uu, vv complex128
    	s, t string
    	array []byte
    	iface interface{}
    
    	blank _ /* ERROR "cannot use _" */
    )
    
    // Global variables with initialization
    var (
    	s1 = i + j
    	s2 = i /* ERROR "mismatched types" */ + x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/math/big/natdiv.go

    		for i := 0; i < 2; i++ {
    			e := qhatv.cmp(uu.norm())
    			if e <= 0 {
    				break
    			}
    			subVW(qhat, qhat, 1)
    			c := subVV(qhatv[:s], qhatv[:s], v[:s])
    			if len(qhatv) > s {
    				subVW(qhatv[s:], qhatv[s:], c)
    			}
    			addAt(uu[s:], v[s:], 0)
    		}
    		if qhatv.cmp(uu.norm()) > 0 {
    			panic("impossible")
    		}
    		c := subVV(uu[:len(qhatv)], uu[:len(qhatv)], qhatv)
    		if c > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. src/internal/profile/merge.go

    		vv := make([]string, len(v))
    		copy(vv, v)
    		s.Label[k] = vv
    	}
    	for k, v := range src.NumLabel {
    		u := src.NumUnit[k]
    		vv := make([]int64, len(v))
    		uu := make([]string, len(u))
    		copy(vv, v)
    		copy(uu, u)
    		s.NumLabel[k] = vv
    		s.NumUnit[k] = uu
    	}
    	// Check memoization table. Must be done on the remapped location to
    	// account for the remapped mapping. Add current values to the
    	// existing sample.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		vv := make([]string, len(v))
    		copy(vv, v)
    		s.Label[k] = vv
    	}
    	for k, v := range src.NumLabel {
    		u := src.NumUnit[k]
    		vv := make([]int64, len(v))
    		uu := make([]string, len(u))
    		copy(vv, v)
    		copy(uu, u)
    		s.NumLabel[k] = vv
    		s.NumUnit[k] = uu
    	}
    	copy(s.Value, src.Value)
    	pm.samples[k] = s
    	pm.p.Sample = append(pm.p.Sample, s)
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. src/internal/reflectlite/type.go

    	return implements(u.common(), t.common())
    }
    
    func (t rtype) AssignableTo(u Type) bool {
    	if u == nil {
    		panic("reflect: nil type passed to Type.AssignableTo")
    	}
    	uu := u.common()
    	tt := t.common()
    	return directlyAssignable(uu, tt) || implements(uu, tt)
    }
    
    func (t rtype) Comparable() bool {
    	return t.Equal != nil
    }
    
    // implements reports whether the type V implements the interface type T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. internal/rest/client.go

    func (c *Client) Close() {
    	atomic.StoreInt32(&c.connected, closed)
    }
    
    // NewClient - returns new REST client.
    func NewClient(uu *url.URL, tr http.RoundTripper, newAuthToken func(aud string) string) *Client {
    	connected := int32(online)
    	urlStr := uu.String()
    	u, err := url.Parse(urlStr)
    	if err != nil {
    		// Mark offline, with no reconnection attempts.
    		connected = int32(offline)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. src/regexp/testdata/re2-exhaustive.txt.bz2

    �uW��zu�{.��izl�����- ��Ͻ�޽��������_��=��`" ��L��� ���EUUV�UU���{ő�d�gp$�@>'� �m�ȤRA$�I�|�����j����QQo��]wg�/��������������!t�,�> ɴY �SQ�P|7��������.$Y��L��b�%�b���g��q�q�q�q�/󻻛4��wwwk4����;�t����3��*���������*�������������������������d5���l�}j�J�i�/$��F�$�[^Iy�$A%�D֯$�L4헒N�� l�C �E�$��Z�䕊�� �|A�)"��m�\�%�m��I� '�8��1I@�m{%��%�r���$��%�w��AD�O/R�4[T�Ym���k����4z���s���UUUV�UU�R�@Ud�I$��I �$�ݲ��t�BH� ��w��]>�������n:eݎ��=��~�9�:�� ׭X}�...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 418.2K bytes
    - Viewed (0)
  10. docs/vi/docs/python-types.md

    **FastAPI** hoàn toàn được dựa trên những gợi ý kiểu dữ liệu, chúng mang đến nhiều ưu điểm và lợi ích.
    
    Nhưng thậm chí nếu bạn không bao giờ sử dụng **FastAPI**, bạn sẽ được lợi từ việc học một ít về chúng.
    
    !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top