Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for argTypes (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // shapes of these graph edges, so we just query it to build the corresponding
      // MLIR function type signature.
    
      llvm::SmallVector<mlir::Type, 4> arg_types;
      if (specs_.inputs.empty()) {
        arg_types.reserve(fbody.arg_types.size());
        for (auto arg : fbody.arg_nodes) {
          // Find node in the graph using the node id instead of using `arg`
          // directly because the graph has been cloned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    for (int typeVar = addNameParameter ? 1 : 0, stackVar = addNameParameter ? 2 : 1; typeVar < paramTypes.size(); ++typeVar) {
                        Type argType = paramTypes.get(typeVar);
                        _ILOAD_OF(argType, stackVar);
                        stackVar += argType.getSize();
                    }
                    _INVOKESPECIAL(superclassType, "<init>", superMethodDescriptor);
    
                    if (addNameParameter) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            val kid: KaClassLikeSymbol
        }
    
        interface JsExternalArgument : KaFirDiagnostic<KtExpression> {
            override val diagnosticClass get() = JsExternalArgument::class
            val argType: KaType
        }
    
        interface WrongExportedDeclaration : KaFirDiagnostic<KtElement> {
            override val diagnosticClass get() = WrongExportedDeclaration::class
            val kind: String
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtDeclaration>(firDiagnostic, token), KaFirDiagnostic.JsExternalInheritorsOnly
    
    internal class JsExternalArgumentImpl(
        override val argType: KaType,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtExpression>(firDiagnostic, token), KaFirDiagnostic.JsExternalArgument
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
Back to top