Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for iB (0.72 sec)

  1. test/ken/interbasic.go

    type I0 interface{}
    
    func f() {
    	var ia, ib I0
    	var i myint
    	var s mystring
    
    	if ia != ib {
    		panic("1")
    	}
    
    	i = 1
    	ia = i
    	ib = i
    	if ia != ib {
    		panic("2")
    	}
    	if ia == nil {
    		panic("3")
    	}
    
    	i = 2
    	ia = i
    	if ia == ib {
    		panic("4")
    	}
    
    	ia = nil
    	if ia == ib {
    		panic("5")
    	}
    
    	ib = nil
    	if ia != ib {
    		panic("6")
    	}
    
    	if ia != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.2K bytes
    - Viewed (0)
  2. test/cmp.go

    	istrue(ia != ic)
    	istrue(ia != id)
    	istrue(ib != ic)
    	istrue(ib != id)
    	isfalse(ic != id)
    	isfalse(ie != ie)
    
    	// these are not okay, because there is no comparison on slices or maps.
    	//isfalse(a == ib)
    	//isfalse(a == ic)
    	//isfalse(a == id)
    	//isfalse(b == ic)
    	//isfalse(b == id)
    
    	istrue(c == id)
    	istrue(e == ie)
    
    	//isfalse(ia == b)
    	isfalse(ia == c)
    	isfalse(ia == d)
    	isfalse(ib == c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 26 03:38:21 UTC 2015
    - 7.6K bytes
    - Viewed (0)
  3. test/ken/mfunc.go

    // Test simple multi-argument multi-valued function.
    
    package main
    
    func
    main() {
    	var x,y int;
    
    	x,y = simple(10,20,30);
    	if x+y != 65 { panic(x+y); }
    }
    
    func
    simple(ia,ib,ic int) (oa,ob int) {
    	return ia+5, ib+ic;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 386 bytes
    - Viewed (0)
  4. test/ken/simpfun.go

    // Test simple functions.
    
    package main
    
    func
    main() {
    	var x int;
    
    	x = fun(10,20,30);
    	if x != 60 { panic(x); }
    }
    
    func
    fun(ia,ib,ic int)int {
    	var o int;
    
    	o = ia+ib+ic;
    	if o != 60 { panic(o); }
    	return o;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 380 bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

    internal fun <T> interleave(
      a: Iterable<T>,
      b: Iterable<T>,
    ): List<T> {
      val ia = a.iterator()
      val ib = b.iterator()
    
      return buildList {
        while (ia.hasNext() || ib.hasNext()) {
          if (ia.hasNext()) {
            add(ia.next())
          }
          if (ib.hasNext()) {
            add(ib.next())
          }
        }
      }
    }
    
    // TODO check read only options for creating lists
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. test/float_lit.go

    var bad bool
    
    func pow10(pow int) float64 {
    	if pow < 0 {
    		return 1 / pow10(-pow)
    	}
    	if pow > 0 {
    		return pow10(pow-1) * 10
    	}
    	return 1
    }
    
    func close(da float64, ia, ib int64, pow int) bool {
    	db := float64(ia) / float64(ib)
    	db *= pow10(pow)
    
    	if da == 0 || db == 0 {
    		if da == 0 && db == 0 {
    			return true
    		}
    		return false
    	}
    
    	de := (da - db) / da
    	if de < 0 {
    		de = -de
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 4K bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/ajax/js/jquery-2.1.1.min.js

    :java|ecma)script/i,gb=/^true\/(.*)/,hb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,ib={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};ib.optgroup=ib.option,ib.tbody=ib.tfoot=ib.colgroup=ib.caption=ib.thead,ib.th=ib.td;function jb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.f...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 82.3K bytes
    - Viewed (0)
  8. src/crypto/sha1/sha1block_arm.s

    	ADD	Rdata, Rt0
    	MOVW	Rt0, p_end	// pointer to end of data
    
    	// Load up initial SHA-1 accumulator
    	MOVW	dig+0(FP), Rt0
    	MOVM.IA (Rt0), [Ra,Rb,Rc,Rd,Re]
    
    loop:
    	// Save registers at SP+4 onwards
    	MOVM.IB [Ra,Rb,Rc,Rd,Re], (R13)
    
    	MOVW	$w_buf, Rw
    	MOVW	$0x5A827999, Rconst
    	MOVW	$3, Rctr
    loop1:	ROUND1(Ra, Rb, Rc, Rd, Re)
    	ROUND1(Re, Ra, Rb, Rc, Rd)
    	ROUND1(Rd, Re, Ra, Rb, Rc)
    	ROUND1(Rc, Rd, Re, Ra, Rb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/armerror.s

    	MOVM.DA	(F1), [R0-R4]      // ERROR "illegal base register"
    	MOVM.IB	(F1), [R0-R4]      // ERROR "illegal base register"
    	MOVM.DB	(F1), [R0-R4]      // ERROR "illegal base register"
    	MOVM.IA	[R0-R4], (F1)      // ERROR "illegal base register"
    	MOVM.DA	[R0-R4], (F1)      // ERROR "illegal base register"
    	MOVM.IB	[R0-R4], (F1)      // ERROR "illegal base register"
    	MOVM.DB	[R0-R4], (F1)      // ERROR "illegal base register"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 14:06:21 UTC 2017
    - 14.4K bytes
    - Viewed (0)
  10. test/convT2X.go

    var (
    	iu16  interface{} = u16
    	iu32  interface{} = u32
    	iu64  interface{} = u64
    	iu128 interface{} = u128
    	if32  interface{} = f32
    	if64  interface{} = f64
    	ic128 interface{} = c128
    	is    interface{} = s
    	ib    interface{} = b
    	im    interface{} = m
    	ic    interface{} = c
    	iz    interface{} = z
    	ip    interface{} = p
    	ipp   interface{} = pp
    
    	ju16  J = u16
    	ju32  J = u32
    	ju64  J = u64
    	ju128 J = u128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 02 23:09:05 UTC 2012
    - 3.3K bytes
    - Viewed (0)
Back to top