Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,304 for pos3 (0.05 sec)

  1. src/go/ast/ast.go

    	}
    	return x.Lbrace
    }
    func (x *ParenExpr) Pos() token.Pos      { return x.Lparen }
    func (x *SelectorExpr) Pos() token.Pos   { return x.X.Pos() }
    func (x *IndexExpr) Pos() token.Pos      { return x.X.Pos() }
    func (x *IndexListExpr) Pos() token.Pos  { return x.X.Pos() }
    func (x *SliceExpr) Pos() token.Pos      { return x.X.Pos() }
    func (x *TypeAssertExpr) Pos() token.Pos { return x.X.Pos() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  2. src/archive/tar/writer.go

    		if sw.pos < dataStart { // In a hole fragment
    			bf := b[:min(int64(len(b)), dataStart-sw.pos)]
    			nf, err = zeroWriter{}.Write(bf)
    		} else { // In a data fragment
    			bf := b[:min(int64(len(b)), dataEnd-sw.pos)]
    			nf, err = sw.fw.Write(bf)
    		}
    		b = b[nf:]
    		sw.pos += int64(nf)
    		if sw.pos >= dataEnd && len(sw.sp) > 1 {
    			sw.sp = sw.sp[1:] // Ensure last fragment always remains
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    // and calling pre and post for each node as described below.
    // Apply returns the syntax tree, possibly modified.
    //
    // If pre is not nil, it is called for each node before the node's
    // children are traversed (pre-order). If pre returns false, no
    // children are traversed, and post is not called for that node.
    //
    // If post is not nil, and a prior call of pre didn't return false,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. src/archive/tar/reader.go

    		// to see if Seek is really supported.
    		pos1, err := sr.Seek(0, io.SeekCurrent)
    		if pos1 >= 0 && err == nil {
    			// Seek seems supported, so perform the real Seek.
    			pos2, err := sr.Seek(n-1, io.SeekCurrent)
    			if pos2 < 0 || err != nil {
    				return err
    			}
    			seekSkipped = pos2 - pos1
    		}
    	}
    
    	copySkipped, err := io.CopyN(io.Discard, r, n-seekSkipped)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. src/go/types/infer.go

    		tname := NewTypeName(tparam.Obj().Pos(), tparam.Obj().Pkg(), tparam.Obj().Name(), nil)
    		tparams2[i] = NewTypeParam(tname, nil)
    		tparams2[i].index = tparam.index // == i
    	}
    
    	renameMap := makeRenameMap(tparams, tparams2)
    	for i, tparam := range tparams {
    		tparams2[i].bound = check.subst(pos, tparam.bound, renameMap, nil, check.context())
    	}
    
    	return tparams2, check.subst(pos, typ, renameMap, nil, check.context())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/dwarfgen/dwinl.go

    	// Walk progs to build up the InlCalls data structure
    	var prevpos src.XPos
    	for p := fnsym.Func().Text; p != nil; p = p.Link {
    		if p.Pos == prevpos {
    			continue
    		}
    		ii := posInlIndex(p.Pos)
    		if ii >= 0 {
    			insertInlCall(&inlcalls, ii, imap)
    		}
    		prevpos = p.Pos
    	}
    
    	// This is used to partition DWARF vars by inline index. Vars not
    	// produced by the inliner will wind up in the vmap[0] entry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/rangefunc/rewrite.go

    	x.DeferAt = r.useObj(r.defers)
    	setPos(x.DeferAt, x.Pos())
    	return x
    }
    
    func (r *rewriter) stateVar(pos syntax.Pos) (*types2.Var, *syntax.VarDecl) {
    	r.stateVarCount++
    
    	name := fmt.Sprintf("#state%d", r.stateVarCount)
    	typ := r.int.Type()
    	obj := types2.NewVar(pos, r.pkg, name, typ)
    	n := syntax.NewName(pos, name)
    	setValueType(n, typ)
    	r.info.Defs[n] = obj
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/fmt.go

    		fmt.Fprintf(w, " tc(%d)", n.Typecheck())
    	}
    
    	if n.Pos().IsKnown() {
    		fmt.Fprint(w, " # ")
    		switch n.Pos().IsStmt() {
    		case src.PosNotStmt:
    			fmt.Fprint(w, "_") // "-" would be confusing
    		case src.PosIsStmt:
    			fmt.Fprint(w, "+")
    		}
    		sep := ""
    		base.Ctxt.AllPos(n.Pos(), func(pos src.Pos) {
    			fmt.Fprint(w, sep)
    			sep = " "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/expand_calls.go

    		}
    	}
    
    	return
    }
    
    func (x *expandState) decomposePair(pos src.XPos, b *Block, a, mem *Value, t0, t1 *types.Type, o0, o1 Op, rc *registerCursor) *Value {
    	e := b.NewValue1(pos, o0, t0, a)
    	pos = pos.WithNotStmt()
    	mem = x.decomposeAsNecessary(pos, b, e, mem, rc.next(t0))
    	e = b.NewValue1(pos, o1, t1, a)
    	mem = x.decomposeAsNecessary(pos, b, e, mem, rc.next(t1))
    	return mem
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  10. tests/test_generate_unique_id_function.py

        @callback_router.post(
            "/post-callback",
            response_model=List[Item],
            responses={404: {"model": List[Message]}},
            generate_unique_id_function=custom_generate_unique_id3,
        )
        def post_callback(item1: Item, item2: Item):
            return item1, item2  # pragma: nocover
    
        @app.post(
            "/",
            response_model=List[Item],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
Back to top