Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 228 for Positions (0.14 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/views/arg_view.cc

        return "AddInput";
      }
    }
    
    std::vector<string> ArgView::SetterArgs() const { return {VariableName()}; }
    
    bool ArgView::IsList() const { return arg_.arg_type().is_list(); }
    
    int ArgView::Position() const { return arg_.position(); }
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/nio/ChannelUtil.java

         * @param position
         *            読み込みを開始する位置
         * @return 読み込んだバイト数
         */
        public static int read(final FileChannel channel, final ByteBuffer buffer, final long position) {
            assertArgumentNotNull("channel", channel);
            assertArgumentNotNull("buffer", buffer);
    
            try {
                return channel.read(buffer, position);
            } catch (final IOException e) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/smartCastProvider/AbstractHLSmartCastInfoTest.kt

                        val receiverSmartCasts = expression.getImplicitReceiverSmartCast()
                        for (receiverSmartCast in receiverSmartCasts) {
                            appendLine("receiver: ${receiverSmartCast.kind}")
                            appendLine("    smartCastType: ${receiverSmartCast.type.render(position = Variance.INVARIANT)}")
                        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/AbstractReferenceImportAliasTest.kt

            }
        }
    
        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
            val position = testServices.expressionMarkerProvider.getCaretPosition(mainFile)
            val reference = mainFile.findReferenceAt(position)
            assertNotNull(reference)
            val expectedAlias = mainModule.testModule.directives.singleValue(Directives.TYPE_ALIAS)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 15:30:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/components/KtRendererProvider.kt

    ) : KaSymbolDeclarationRendererProvider() {
    
        override fun renderType(type: KaType, renderer: KaTypeRenderer, position: Variance): String {
            return with(analysisSession) {
                val approximatedType = KaRendererTypeApproximator.TO_DENOTABLE.approximateType(analysisSession, type, position)
                prettyPrint { renderer.renderType(analysisSession, approximatedType, this) }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/scan.go

    	imports              []rawImport
    	embeds               []embed
    	directives           []build.Directive
    }
    
    type rawImport struct {
    	path     string
    	position token.Position
    }
    
    type embed struct {
    	pattern  string
    	position token.Position
    }
    
    // importRaw fills the rawPackage from the package files in srcDir.
    // dir is the package's path relative to the modroot.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10VisibilityChecker.kt

        override val token: KaLifetimeToken
            get() = analysisSession.token
    
        override fun isVisible(
            candidateSymbol: KaSymbolWithVisibility,
            useSiteFile: KaFileSymbol,
            position: PsiElement,
            receiverExpression: KtExpression?
        ): Boolean {
            if (candidateSymbol.visibility == Visibilities.Public) {
                return true
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/substitutorProvider/AbstractCreateInheritanceTypeSubstitutorTest.kt

                                        append(it.returnType.render(typeRenderer, position = Variance.IN_VARIANCE))
                                    }
                                    append(": ${signature.returnType.render(typeRenderer, position = Variance.OUT_VARIANCE)}")
                                }
                            }
                        }
                    }
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/go/internal/typeparams/typeparams.go

    type IndexExpr struct {
    	Orig    ast.Expr   // the wrapped expr, which may be distinct from the IndexListExpr below.
    	X       ast.Expr   // expression
    	Lbrack  token.Pos  // position of "["
    	Indices []ast.Expr // index expressions
    	Rbrack  token.Pos  // position of "]"
    }
    
    func (x *IndexExpr) Pos() token.Pos {
    	return x.Orig.Pos()
    }
    
    func UnpackIndexExpr(n ast.Node) *IndexExpr {
    	switch e := n.(type) {
    	case *ast.IndexExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/heading.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"
    	"fmt"
    	"strings"
    )
    
    type Heading struct {
    	Position
    	Level int
    	Text  *Text
    	// The HTML id attribute. The parser populates this field if
    	// [Parser.HeadingIDs] is true and the heading ends with text like "{#id}".
    	ID string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top