Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for ddd1 (0.05 sec)

  1. test/ddd1.go

    Robert Griesemer <******@****.***> 1664399604 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 22:28:39 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. test/live.go

    	// from before the printnl to after.
    	useT40(t)
    }
    
    func ddd1(x, y *int) { // ERROR "live at entry to ddd1: x y$"
    	ddd2(x, y) // ERROR "stack object .autotmp_[0-9]+ \[2\]\*int$"
    	printnl()
    	// Note: no .?autotmp live at printnl.  See issue 16996.
    }
    func ddd2(a ...*int) { // ERROR "live at entry to ddd2: a$"
    	sink = a[0]
    }
    
    // issue 16016: autogenerated wrapper should have arguments live
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. test/live_regabi.go

    	// from before the printnl to after.
    	useT40(t)
    }
    
    func ddd1(x, y *int) { // ERROR "live at entry to ddd1: x y$"
    	ddd2(x, y) // ERROR "stack object .autotmp_[0-9]+ \[2\]\*int$"
    	printnl()
    	// Note: no .?autotmp live at printnl.  See issue 16996.
    }
    func ddd2(a ...*int) { // ERROR "live at entry to ddd2: a$"
    	sink = a[0]
    }
    
    // issue 16016: autogenerated wrapper should have arguments live
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. test/ddd2.dir/ddd3.go

    package main
    
    import "./ddd2"
    
    func main() {
    	if x := ddd.Sum(1, 2, 3); x != 6 {
    		println("ddd.Sum 6", x)
    		panic("fail")
    	}
    	if x := ddd.Sum(); x != 0 {
    		println("ddd.Sum 0", x)
    		panic("fail")
    	}
    	if x := ddd.Sum(10); x != 10 {
    		println("ddd.Sum 10", x)
    		panic("fail")
    	}
    	if x := ddd.Sum(1, 8); x != 9 {
    		println("ddd.Sum 9", x)
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 583 bytes
    - Viewed (0)
  5. test/ddd2.dir/ddd2.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file is compiled and then imported by ddd3.go.
    
    package ddd
    
    func Sum(args ...int) int {
    	s := 0
    	for _, v := range args {
    		s += v
    	}
    	return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 316 bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/moment-with-locales.min.js

    o",function(e,a){return e?a._dayOfMonthOrdinalParse||a._ordinalParse:a._dayOfMonthOrdinalParseLenient}),le(["D","DD"],ce),le("Do",function(e,a){a[ce]=g(e.match(B)[0])});var tt=Se("Date",!0);I("DDD",["DDDD",3],"DDDo","dayOfYear"),P("dayOfYear","DDD"),A("dayOfYear",4),ie("DDD",X),ie("DDDD",K),le(["DDD","DDDD"],function(e,a,t){t._dayOfYear=g(e)}),I("m",["mm",2],0,"minute"),P("minute","m"),A("minute",14),ie("m",B),ie("mm",B,V),le(["m","mm"],ye);var st=Se("Minutes",!1);I("s",["ss",2],0,"second"),P("s...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
  7. test/ddd2.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 252 bytes
    - Viewed (0)
  8. test/ddd.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  9. test/syntax/ddd.go

    Robert Griesemer <******@****.***> 1661470895 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 01 22:37:04 UTC 2022
    - 266 bytes
    - Viewed (0)
  10. src/strconv/ftoa.go

    //
    // The format fmt is one of
    // 'b' (-ddddp±ddd, a binary exponent),
    // 'e' (-d.dddde±dd, a decimal exponent),
    // 'E' (-d.ddddE±dd, a decimal exponent),
    // 'f' (-ddd.dddd, no exponent),
    // 'g' ('e' for large exponents, 'f' otherwise),
    // 'G' ('E' for large exponents, 'f' otherwise),
    // 'x' (-0xd.ddddp±ddd, a hexadecimal fraction and binary exponent), or
    // 'X' (-0Xd.ddddP±ddd, a hexadecimal fraction and binary exponent).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top