Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for Positions (0.37 sec)

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

    			return false
    		}
    	} else {
    		check.errorf(x, InvalidSyntaxTree, "unknown operator %s", op)
    		return false
    	}
    	return true
    }
    
    // opPos returns the position of the operator if x is an operation;
    // otherwise it returns the start position of x.
    func opPos(x syntax.Expr) syntax.Pos {
    	switch op := x.(type) {
    	case nil:
    		return nopos // don't crash
    	case *syntax.Operation:
    		return op.Pos()
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/jquery-3.6.3.min.js

    .pseudos.animated=function(t){return E.grep(E.timers,function(e){return t===e.elem}).length},E.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=E.css(e,"position"),c=E(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=E.css(e,"top"),u=E.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,E.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.lef...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            return element
        }
    
        fun findScopesAtPosition(
            position: KtElement,
            newImports: Sequence<FqName>,
            towerContextProvider: FirTowerDataContextProvider,
            withImplicitReceivers: Boolean = true,
        ): List<FirScope>? {
            val towerDataContext = towerContextProvider.getClosestAvailableParentContext(position) ?: return null
            val nonLocalScopes = towerDataContext.nonLocalTowerDataElements
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

    .createElement(f[1])]:(f=qa([a],b,g),g&&g.length&&r(g).remove(),r.merge([],f.childNodes))},r.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=r.css(a,"position"),l=r(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=r.css(a,"top"),i=r.css(a,"left"),j=("absolute"===k||"fixed"===k)&&(f+i).indexOf("auto")>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),r.isFunction(b)&&(b=b.call(a,c,r.extend({},h))),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    // If addPosition is true, add position info in the ident name.
    func (p *Package) rewriteName(f *File, r *Ref, addPosition bool) ast.Expr {
    	getNewIdent := ast.NewIdent
    	if addPosition {
    		getNewIdent = func(newName string) *ast.Ident {
    			mangledIdent := ast.NewIdent(newName)
    			if len(newName) == len(r.Name.Go) {
    				return mangledIdent
    			}
    			p := fset.Position((*r.Expr).End())
    			if p.Column == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    	stubType := 0
    	stubTypeStr := ""
    
    	// For now, the choice of call stub type is determined by whether
    	// the caller maintains a TOC pointer in R2. A TOC pointer implies
    	// we can always generate a position independent stub.
    	//
    	// For dynamic calls made from an external object, a caller maintains
    	// a TOC pointer only when an R_PPC64_REL24 relocation is used.
    	// An R_PPC64_REL24_NOTOC relocation does not use or maintain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    // the value of position; otherwise, this function will return the
    // value of param.
    func exportParamName(param string, position int) string {
    	if param == "" {
    		return fmt.Sprintf("p%d", position)
    	}
    
    	pname := param
    
    	for i := 0; i < len(param); i++ {
    		if param[i] > unicode.MaxASCII {
    			pname = fmt.Sprintf("p%d", position)
    			break
    		}
    	}
    
    	return pname
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    			x.mode = invalid
    			return
    		}
    
    		x.mode = commaok
    		x.typ = ch.elem
    		check.hasCallOrRecv = true
    		return
    
    	case token.TILDE:
    		// Provide a better error position and message than what check.op below would do.
    		if !allInteger(x.typ) {
    			check.error(e, UndefinedOp, "cannot use ~ outside of interface or type constraint")
    			x.mode = invalid
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. src/runtime/asm_amd64.s

    	MOVQ	m_p(R13), R13
    	// Get current buffer write position.
    	MOVQ	(p_wbBuf+wbBuf_next)(R13), R12	// original next position
    	ADDQ	R11, R12			// new next position
    	// Is the buffer full?
    	CMPQ	R12, (p_wbBuf+wbBuf_end)(R13)
    	JA	flush
    	// Commit to the larger buffer.
    	MOVQ	R12, (p_wbBuf+wbBuf_next)(R13)
    	// Make return value (the original next position)
    	SUBQ	R11, R12
    	MOVQ	R12, R11
    	// Restore registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

    # See if there's a way to fetch or construct the "management subnet" so that
    # this is not needed.
    function ConvertTo_DecimalIP
    {
      param(
        [parameter(Mandatory = $true, Position = 0)]
        [Net.IPAddress] $IPAddress
      )
    
      $i = 3; $decimal_ip = 0;
      $IPAddress.GetAddressBytes() | % {
        $decimal_ip += $_ * [Math]::Pow(256, $i); $i--
      }
      return [UInt32]$decimal_ip
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top