Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 228 for Positions (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/SingleParentCopySpec.java

            return child;
        }
    
        @Override
        protected CopySpecInternal addChildAtPosition(int position) {
            DefaultCopySpec child = instantiator.newInstance(SingleParentCopySpec.class, fileCollectionFactory, instantiator, patternSetFactory, buildResolverRelativeToParent(parentResolver));
            addChildSpec(position, child);
            return child;
        }
    
        @Override
        public boolean isCaseSensitive() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 27 14:16:37 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirVisibilityChecker.kt

        override val token: KaLifetimeToken
    ) : KaVisibilityChecker(), KaFirSessionComponent {
    
        override fun isVisible(
            candidateSymbol: KaSymbolWithVisibility,
            useSiteFile: KaFileSymbol,
            position: PsiElement,
            receiverExpression: KtExpression?
        ): Boolean {
            require(candidateSymbol is KaFirSymbol<*>)
            require(useSiteFile is KaFirFileSymbol)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

       * in (by dividing by 4) and out (by multiplying by 4).
       */
      private fun findRangesOffset(
        codePoint: Int,
        position: Int,
        limit: Int,
      ): Int {
        val target = codePoint and 0x7f
        val offset =
          binarySearch(
            position = position,
            limit = limit,
          ) { index ->
            val entryIndex = index * 4
            val b0 = ranges[entryIndex].code
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:39:58 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. maven-bom/src/site/site.xml

          <options>
            <disableCookies/>
            <trackPageView/>
            <enableLinkTracking/>
          </options>
        </matomo>
      </custom>
    
      <publishDate position="right" />
      <version position="right" />
    
      <body>
        <breadcrumbs>
          <item name="Apache" href="https://www.apache.org/" />
          <item name="Maven"  href="https://maven.apache.org/index.html" />
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 21:16:47 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

         * @return this
         * @since 8.6
         */
        ProblemSpec lineInFileLocation(String path, int line);
    
        /**
         * Declares that this problem is in a file with on a line at a certain position.
         * <p>
         *
         * @param path the file location
         * @param line the one-indexed line number
         * @param column the one-indexed column
         * @return this
         * @since 8.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. fastapi/datastructures.py

            offset: Annotated[
                int,
                Doc(
                    """
                    The position in bytes to seek to in the file.
                    """
                ),
            ],
        ) -> None:
            """
            Move to a position in the file.
    
            Any next read or write will be done from that position.
    
            To be awaitable, compatible with async, this is run in threadpool.
            """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/RegularImmutableSortedSet.java

      int indexOf(@CheckForNull Object target) {
        if (target == null) {
          return -1;
        }
        int position;
        try {
          position = Collections.binarySearch(elements, target, unsafeComparator());
        } catch (ClassCastException e) {
          return -1;
        }
        return (position >= 0) ? position : -1;
      }
    
      @Override
      ImmutableList<E> createAsList() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/nodes.go

    // Nodes
    
    type Node interface {
    	// Pos() returns the position associated with the node as follows:
    	// 1) The position of a node representing a terminal syntax production
    	//    (Name, BasicLit, etc.) is the position of the respective production
    	//    in the source.
    	// 2) The position of a node representing a non-terminal production
    	//    (IndexExpr, IfStmt, etc.) is the position of a token uniquely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/break.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package markdown
    
    import (
    	"bytes"
    )
    
    type ThematicBreak struct {
    	Position
    	raw string
    }
    
    func (b *ThematicBreak) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("<hr />\n")
    }
    
    func (b *ThematicBreak) printMarkdown(buf *bytes.Buffer, s mdState) {
    	buf.WriteString(s.prefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. test/fixedbugs/issue67141.go

    // errorcheck -lang=go1.22
    
    //go:build go1.21
    
    // We need a line directive before the package clause,
    // but don't change file name or position so that the
    // error message appears at the right place.
    
    //line issue67141.go:10
    package p
    
    func _() {
    	for range 10 { // ERROR "cannot range over 10"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:21 UTC 2024
    - 301 bytes
    - Viewed (0)
Back to top