Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for search_ (0.3 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationsList.kt

         *
         * The semantic is equivalent to
         * ```
         * annotationsList.hasAnnotation(classId) == annotationsList.annotations.any { it.classId == classId }
         * ```
         * @param classId [ClassId] to search
         */
        public operator fun contains(classId: ClassId): Boolean
    
        @Deprecated("Use 'contains' instead.", replaceWith = ReplaceWith("contains(classId)"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirUtils.kt

        // Handle unresolved annotation calls gracefully
        @OptIn(UnresolvedExpressionTypeAccess::class)
        val annotationClass = annotation.coneTypeOrNull?.toClassSymbol(session)?.fir ?: return null
    
        // The search is done via scope to force Java enhancement. Annotation class might be a 'FirJavaClass'
        return annotationClass
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/runlit.cfg.py

    config.test_exec_root = os.environ['RUNFILES_DIR']
    
    if platform.system() == 'Windows':
      tool_patterns = [
          ToolSubst('FileCheck.exe', unresolved='fatal'),
          #  Handle these specially as they are strings searched for during testing.
          ToolSubst('count.exe', unresolved='fatal'),
          ToolSubst('not.exe', unresolved='fatal')
      ]
    
      llvm_config.config.substitutions.append(
          ('%python', '"%s"' % (sys.executable)))
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top