Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for notes (0.34 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                val module = javaModuleFinder.findModule(moduleName) ?: return@flatMap emptyList<JavaRoot>()
                val result = module.getJavaModuleRoots()
                result
            }
        }
    
        /**
         * Note that [findJvmRootsForJavaFiles] parses the given [files] because it needs access to each file's package name. To avoid parsing
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. README.md

        `com.google.guava:failureaccess:1.0.2`. It also has
        [some annotation-only dependencies][guava-deps], which we discuss in more
        detail at that link.
    
    4.  Serialized forms of ALL objects are subject to change unless noted
        otherwise. Do not persist these and assume they can be read by a future
        version of the library.
    
    5.  Our classes are not designed to protect against a malicious caller. You
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

            // The binding context needs to be built from all files with reachable inline functions, as such files may contain classes whose
            // descriptors must be available in the binding context for the IR backend. Note that the full bytecode is only generated for
            // `file` because of filtering in `generateClassFilter`, while only select declarations from other files are generated if needed
            // by the backend.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    // Merge negation into fused multiply-add and multiply-subtract.
    //
    // Key:
    //
    //   [+ -](x * y [+ -] z).
    //    _ N         A S
    //                D U
    //                D B
    //
    // Note: multiplication commutativity handled by rule generator.
    (F(MADD|NMADD|MSUB|NMSUB)S neg:(FNEGS x) y z) && neg.Uses == 1 => (F(NMSUB|MSUB|NMADD|MADD)S x y z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
Back to top