Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for Rparen (0.4 sec)

  1. src/go/parser/parser.go

    	case token.MAP:
    		return p.parseMapType()
    	case token.CHAN, token.ARROW:
    		return p.parseChanType()
    	case token.LPAREN:
    		lparen := p.pos
    		p.next()
    		typ := p.parseType()
    		rparen := p.expect(token.RPAREN)
    		return &ast.ParenExpr{Lparen: lparen, X: typ, Rparen: rparen}
    	}
    
    	// no type found
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    	if p.trace {
    		defer un(trace(p, "Parameters"))
    	}
    
    	var params []*ast.Field
    	lparen := p.expect(token.LPAREN)
    	if p.tok != token.RPAREN {
    		params = p.parseParameterList(scope, ellipsisOk)
    	}
    	rparen := p.expect(token.RPAREN)
    
    	return &ast.FieldList{lparen, params, rparen}
    }
    
    func (p *parser) parseResult(scope *ast.Scope) *ast.FieldList {
    	if p.trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. src/go/printer/nodes.go

    		// types require parentheses around the type.
    		paren := false
    		switch t := x.Fun.(type) {
    		case *ast.FuncType:
    			paren = true
    		case *ast.ChanType:
    			paren = t.Dir == ast.RECV
    		}
    		if paren {
    			p.print(token.LPAREN)
    		}
    		wasIndented := p.possibleSelectorExpr(x.Fun, token.HighestPrec, depth)
    		if paren {
    			p.print(token.RPAREN)
    		}
    
    		p.setPos(x.Lparen)
    		p.print(token.LPAREN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/parser.go

    		p.next()
    		var typ Expr
    		if p.tok == _Lparen {
    			// *(T)
    			p.syntaxError("cannot parenthesize embedded type")
    			p.next()
    			typ = p.qualifiedName(nil)
    			p.got(_Rparen) // no need to complain if missing
    		} else {
    			// *T
    			typ = p.qualifiedName(nil)
    		}
    		tag := p.oliteral()
    		p.addField(styp, pos, nil, newIndirect(pos, typ), tag)
    
    	case _Lparen:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/adminlte.min.js.map

    (ClassName.OPEN)\n      })\n    }\n\n    toggle(event) {\n\n      const $relativeTarget = $(event.currentTarget)\n      const $parent = $relativeTarget.parent()\n\n      let treeviewMenu = $parent.find('> ' + Selector.TREEVIEW_MENU)\n\n      if (!treeviewMenu.is(Selector.TREEVIEW_MENU)) {\n\n        if (!$parent.is(Selector.LI)) {\n          treeviewMenu = $parent.parent().find('> ' + Selector.TREEVIEW_MENU)\n        }\n\n        if (!treeviewMenu.is(Selector.TREEVIEW_MENU)) {\n          return\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  6. src/html/template/exec_test.go

    	// Parenthesized expressions
    	{"parens in pipeline", "{{printf `%d %d %d` (1) (2 | add 3) (add 4 (add 5 6))}}", "1 5 15", tVal, true},
    
    	// Parenthesized expressions with field accesses
    	{"parens: $ in paren", "{{($).X}}", "x", tVal, true},
    	{"parens: $.GetU in paren", "{{($.GetU).V}}", "v", tVal, true},
    	{"parens: $ in paren in pipe", "{{($ | echo).X}}", "x", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

        <version>version-one</version>
    
        <parent>
            <groupId>group-one</groupId>
            <artifactId>parent</artifactId>
            <version>version-one</version>
        </parent>
    </project>
    """
            and:
            parseContext.getMetaDataArtifact({ it.selector.module == 'parent' }, _, MAVEN_POM) >> asResource(parent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    					vmin = parent.NewValue0I(parent.Pos, OpConst64, parent.Func.Config.Types.Int64, min)
    					vmax = parent.NewValue0I(parent.Pos, OpConst64, parent.Func.Config.Types.Int64, max)
    
    				case 4:
    					min = int64(int32(w.AuxInt) - int32(delta))
    					max = int64(int32(^uint32(0)>>1) - int32(delta))
    
    					vmin = parent.NewValue0I(parent.Pos, OpConst32, parent.Func.Config.Types.Int32, min)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                throws ModelBuilderException {
            problems.setSource(childModel);
    
            Parent parent = childModel.getParent();
    
            String groupId = parent.getGroupId();
            String artifactId = parent.getArtifactId();
            String version = parent.getVersion();
    
            ModelResolver modelResolver = getModelResolver(request);
            Objects.requireNonNull(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    			routeKey = obj.Namespace
    			if parent.OriginalReference.Port != nil {
    				routes = augmentPortMatch(routes, *parent.OriginalReference.Port)
    				routeKey += fmt.Sprintf("/%d", *parent.OriginalReference.Port)
    			}
    			if parent.InternalKind == gvk.ServiceEntry {
    				vsHosts = serviceEntryHosts(ctx.ServiceEntry,
    					string(parent.OriginalReference.Name),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top