Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 75 for nextar (0.23 sec)

  1. src/cmd/compile/internal/types2/decl.go

    				check.declare(check.scope, name, lhs[i], scopePos)
    			}
    
    		case *syntax.VarDecl:
    			top := len(check.delayed)
    
    			lhs0 := make([]*Var, len(s.NameList))
    			for i, name := range s.NameList {
    				lhs0[i] = NewVar(name.Pos(), pkg, name.Value, nil)
    			}
    
    			// initialize all variables
    			values := syntax.UnpackListExpr(s.Values)
    			for i, obj := range lhs0 {
    				var lhs []*Var
    				var init syntax.Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. src/go/types/issues_test.go

    		t.Error("comparable not assignable to any")
    	}
    }
    
    func TestIssue55030(t *testing.T) {
    	// makeSig makes the signature func(typ...)
    	makeSig := func(typ Type) {
    		par := NewVar(nopos, nil, "", typ)
    		params := NewTuple(par)
    		NewSignatureType(nil, nil, nil, params, nil, true)
    	}
    
    	// makeSig must not panic for the following (example) types:
    	// []int
    	makeSig(NewSlice(Typ[Int]))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/issues_test.go

    		t.Error("comparable not assignable to any")
    	}
    }
    
    func TestIssue55030(t *testing.T) {
    	// makeSig makes the signature func(typ...)
    	makeSig := func(typ Type) {
    		par := NewVar(nopos, nil, "", typ)
    		params := NewTuple(par)
    		NewSignatureType(nil, nil, nil, params, nil, true)
    	}
    
    	// makeSig must not panic for the following (example) types:
    	// []int
    	makeSig(NewSlice(Typ[Int]))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/entity.go

    	"↗":                           "\u2197",
    	"↗":                         "\u2197",
    	"≐̸":                           "\u2250\u0338",
    	"≢":                          "\u2262",
    	"⤨":                          "\u2928",
    	"≂̸":                           "\u2242\u0338",
    	"∄":                          "\u2204",
    	"∄":                         "\u2204",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  5. src/go/internal/gccgoimporter/parser.go

    		}
    
    		p.next()
    		if p.tok == '\'' {
    			p.next()
    			typ = types.Typ[types.UntypedRune]
    		} else {
    			typ = types.Typ[types.UntypedInt]
    		}
    
    	case scanner.Float:
    		re := sign + p.lit
    		p.next()
    
    		var im string
    		switch p.tok {
    		case '+':
    			p.next()
    			im = p.expect(scanner.Float)
    
    		case '-':
    			p.next()
    			im = "-" + p.expect(scanner.Float)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    throws XmlPullParserExcepti, java.io.IOException; public void skipSubTree() throws XmlPullParserExcepti, java.io.IOException; public String nextText() throws XmlPullParserExcepti, java.io.IOException; public int nextTag() throws XmlPullParserExcepti, java.io.IOException; public int next() throws XmlPullParserExcepti, java.io.IOException; public int nextToken() throws XmlPullParserExcepti, java.io.IOException; protected int nextImpl() throws XmlPullParserExcepti, java.io.IOException; protected int...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  7. src/go/types/decl.go

    				check.declare(check.scope, name, lhs[i], scopePos)
    			}
    
    		case varDecl:
    			top := len(check.delayed)
    
    			lhs0 := make([]*Var, len(d.spec.Names))
    			for i, name := range d.spec.Names {
    				lhs0[i] = NewVar(name.Pos(), pkg, name.Name, nil)
    			}
    
    			// initialize all variables
    			for i, obj := range lhs0 {
    				var lhs []*Var
    				var init ast.Expr
    				switch len(d.spec.Values) {
    				case len(d.spec.Names):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. src/runtime/metrics_test.go

    		case "/gc/heap/objects:objects":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.HeapObjects)
    		case "/gc/heap/goal:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.NextGC)
    		case "/gc/gogc:percent":
    			checkUint64(t, name, samples[i].Value.Uint64(), uint64(gcPercent))
    		case "/gc/cycles/automatic:gc-cycles":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    		// Emit control flow instructions for block
    		var next *ssa.Block
    		if i < len(f.Blocks)-1 && base.Flag.N == 0 {
    			// If -N, leave next==nil so every block with successors
    			// ends in a JMP (except call blocks - plive doesn't like
    			// select{send,recv} followed by a JMP call).  Helps keep
    			// line numbers for otherwise empty blocks.
    			next = f.Blocks[i+1]
    		}
    		x := s.pp.Next
    		s.SetPos(b.Pos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [source,kotlin]
    ----
    val myNewProperty by extra("initial value")  // <1>
    val myOtherNewProperty by extra { "calculated initial value" }  // <2>
    
    val myProperty: String by extra  // <3>
    val myNullableProperty: String? by extra  // <4>
    ----
    <1> Creates a new extra property called `myNewProperty` in the current context (the project in this case) and initializes it with the value `"initial value"`, which also determines the property's _type_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top