Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for endPos (0.12 sec)

  1. src/cmd/compile/internal/syntax/positions.go

    // the returned position is the end position of the last enclosed
    // expression.
    // Thus, EndPos should not be used for exact demarcation of the
    // end of a node in the source; it is mostly useful to determine
    // scope ranges where there is some leeway.
    func EndPos(n Node) Pos {
    	for m := n; ; {
    		switch n := m.(type) {
    		case nil:
    			panic("nil node")
    
    		// packages
    		case *File:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. settings.gradle.kts

                    throw IllegalArgumentException("Could not locate the generated diagram in $markdownFile")
                }
                val endPos = content.subList(markerPos, content.size).indexOfFirst { it.contains(endDiagram) && !it.contains(startDiagram) }
                if (endPos < 0) {
                    throw IllegalArgumentException("Could not locate the end of the generated diagram in $markdownFile")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. docs/zh-hant/docs/fastapi-people.md

    {% endfor %}
    {% endif %}
    
    {% if sponsors.silver %}
    
    ### 銀牌贊助商
    
    {% for sponsor in sponsors.silver -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    {% if sponsors.bronze %}
    
    ### 銅牌贊助商
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 05 00:07:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    	// of the entry, for decoding by PutLocationList.
    	start, startOK := encodeValue(state.ctxt, pending.startBlock, pending.startValue)
    	end, endOK := encodeValue(state.ctxt, endBlock, endValue)
    	if !startOK || !endOK {
    		// If someone writes a function that uses >65K values,
    		// they get incomplete debug info on 32-bit platforms.
    		return
    	}
    	if start == end {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. src/runtime/coro.go

    // the caller becomes the goroutine blocked in c, and the goroutine
    // formerly blocked in c starts running.
    // These switches continue until a call to coroexit(c),
    // which ends the use of the coro by releasing the blocked
    // goroutine in c and exiting the current goroutine.
    //
    // Coros are heap allocated and garbage collected, so that user code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        /**
         * Resolve [KtTypeReference] and return corresponding [KaType] if resolved.
         *
         * This may raise an exception if the resolution ends up with an unexpected kind.
         */
        public fun KtTypeReference.getKaType(): KaType =
            withValidityAssertion { analysisSession.typeProvider.getKtType(this) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. JavadocStyleGuide.md

    - Insert a blank comment line between the description and the list of tags, as shown.
    - The first line that begins with an `@` character ends the description; you cannot continue the description following block tags.
    - Block tags must be added in order.
    - The last line contains the end-comment delimiter ( `*/`).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. build/common.sh

        docker_run_opts+=(--cgroup-parent "${DOCKER_CGROUP_PARENT}")
      fi
    
      # If we have stdin we can run interactive.  This allows things like 'shell.sh'
      # to work.  However, if we run this way and don't have stdin, then it ends up
      # running in a daemon-ish mode.  So if we don't have a stdin, we explicitly
      # attach stderr/stdout but don't bother asking for a tty.
      if [[ -t 0 ]]; then
        docker_run_opts+=(--interactive --tty)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                    // E.g., test.pkg.R.string.hello v.s. coreR.string.hello where test.pkg.R is imported as coreR
                    // Since an import alias ends with a simple identifier (i.e., can't be non-trivial dotted qualifier), we can safely assume
                    // that the first segment of the qualified access could be the import alias if any. Then, we can still compare the
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  10. cmd/utils.go

    func pathClean(p string) string {
    	cp := path.Clean(p)
    	if cp == "." {
    		return ""
    	}
    	return cp
    }
    
    func trimLeadingSlash(ep string) string {
    	if len(ep) > 0 && ep[0] == '/' {
    		// Path ends with '/' preserve it
    		if ep[len(ep)-1] == '/' && len(ep) > 1 {
    			ep = path.Clean(ep)
    			ep += slashSeparator
    		} else {
    			ep = path.Clean(ep)
    		}
    		ep = ep[1:]
    	}
    	return ep
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
Back to top