Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for asIdent (0.58 sec)

  1. src/cmd/go/internal/imports/read.go

    			r.syntaxError()
    			return
    		}
    	}
    	if isIdent(r.peekByte(false)) {
    		r.syntaxError()
    	}
    }
    
    // readIdent reads an identifier from the input.
    // If an identifier is not present, readIdent records a syntax error.
    func (r *importReader) readIdent() {
    	c := r.peekByte(true)
    	if !isIdent(c) {
    		r.syntaxError()
    		return
    	}
    	for isIdent(r.peekByte(false)) {
    		r.peek = 0
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 15 18:42:11 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/dist/imports.go

    			r.syntaxError()
    			return
    		}
    	}
    	if isIdent(r.peekByte(false)) {
    		r.syntaxError()
    	}
    }
    
    // readIdent reads an identifier from the input.
    // If an identifier is not present, readIdent records a syntax error.
    func (r *importReader) readIdent() {
    	c := r.peekByte(true)
    	if !isIdent(c) {
    		r.syntaxError()
    		return
    	}
    	for isIdent(r.peekByte(false)) {
    		r.peek = 0
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 21:45:30 UTC 2019
    - 6.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/util.go

    	// Compare to (*ast.Object).Pos().
    	if id.Obj == nil {
    		return nil
    	}
    	var rhs ast.Expr
    	switch d := id.Obj.Decl.(type) {
    	case *ast.AssignStmt:
    		for i, x := range d.Lhs {
    			if ident, isIdent := x.(*ast.Ident); isIdent && ident.Name == id.Name && i < len(d.Rhs) {
    				rhs = d.Rhs[i]
    			}
    		}
    	case *ast.ValueSpec:
    		for i, n := range d.Names {
    			if n.Name == id.Name && i < len(d.Values) {
    				rhs = d.Values[i]
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/internal/trace/base.go

    type cpuSample struct {
    	schedCtx
    	time  Time
    	stack stackID
    }
    
    // asEvent produces a complete Event from a cpuSample. It needs
    // the evTable from the generation that created it.
    //
    // We don't just store it as an Event in generation to minimize
    // the amount of pointer data floating around.
    func (s cpuSample) asEvent(table *evTable) Event {
    	// TODO(mknyszek): This is go122-specific, but shouldn't be.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/go/ast/scope.go

    		if d.Name.Name == name {
    			return d.Name.Pos()
    		}
    	case *LabeledStmt:
    		if d.Label.Name == name {
    			return d.Label.Pos()
    		}
    	case *AssignStmt:
    		for _, x := range d.Lhs {
    			if ident, isIdent := x.(*Ident); isIdent && ident.Name == name {
    				return ident.Pos()
    			}
    		}
    	case *Scope:
    		// predeclared object - nothing to do for now
    	}
    	return token.NoPos
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/internal/trace/reader.go

    		}
    		return true, nil
    	}
    	// Inject a CPU sample if it comes next.
    	if len(r.cpuSamples) != 0 {
    		if len(r.frontier) == 0 || r.cpuSamples[0].time < r.frontier[0].ev.time {
    			e := r.cpuSamples[0].asEvent(r.gen.evTable)
    			r.cpuSamples = r.cpuSamples[1:]
    			return e, nil
    		}
    	}
    	// Try to advance the head of the frontier, which should have the minimum timestamp.
    	// This should be by far the most common case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. docs/fr/docs/fastapi-people.md

    ...Mais ici, je veux vous montrer la communauté.
    
    ---
    
    **FastAPI** reçoit beaucoup de soutien de la part de la communauté. Et je tiens à souligner leurs contributions.
    
    Ce sont ces personnes qui :
    
    * [Aident les autres à résoudre des problèmes (questions) dans GitHub](help-fastapi.md#aider-les-autres-a-resoudre-les-problemes-dans-github){.internal-link target=_blank}.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top