Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for EntryPoints (0.13 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/rename_entrypoint_to_main.cc

            auto sym_attr = mlir::dyn_cast<FlatSymbolRefAttr>(attr);
            if (!sym_attr) break;
            entrypoints.erase(sym_attr.getValue());
          }
        }
    
        if (entrypoints.empty()) {
          return fail(module, "No entrypoints found");
        }
        if (entrypoints.size() == 1) {
          auto entrypoint = entrypoints.begin()->second;
          Builder builder(entrypoint);
          entrypoint.setName(builder.getStringAttr("main"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/ClassGraph.kt

        private val ignorePackages: PackagePatterns,
        shadowPackage: String
    ) {
    
        private
        val classes: MutableMap<String, ClassDetails> = linkedMapOf()
    
        val entryPoints: MutableSet<ClassDetails> = linkedSetOf()
    
        val shadowPackagePrefix =
            shadowPackage.takeIf(String::isNotEmpty)
                ?.let { it.replace('.', '/') + "/" }
                ?: ""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild/shade/tasks/ShadedJar.kt

        abstract val jarFile: RegularFileProperty
    
        @TaskAction
        fun shade() {
            val entryPoints = readEntryPoints()
            val classTrees = buildClassTrees(readClassTrees())
    
            val classesToInclude = mutableSetOf<String>()
    
            val queue: Queue<String> = ArrayDeque()
            queue.addAll(entryPoints)
            while (!queue.isEmpty()) {
                val className = queue.remove()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 10:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. build-logic/packaging/src/main/kotlin/gradlebuild/shade/transforms/ShadeClasses.kt

    import org.gradle.api.tasks.PathSensitivity
    import org.gradle.work.DisableCachingByDefault
    
    
    private
    const val classTreeFileName = "classTree.json"
    
    
    private
    const val entryPointsFileName = "entryPoints.json"
    
    
    private
    const val relocatedClassesDirName = "classes"
    
    
    private
    const val manifestFileName = "MANIFEST.MF"
    
    
    @CacheableTransform
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild/shade/ArtifactTypes.kt

    package gradlebuild.shade
    
    
    object ArtifactTypes {
        const val relocatedClassesAndAnalysisType = "relocatedClassesAndAnalysis"
        const val relocatedClassesType = "relocatedClasses"
        const val entryPointsType = "entryPoints"
        const val classTreesType = "classTrees"
        const val manifestsType = "manifests"
        const val buildReceiptType = "buildReceipt"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 984 bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/transforms/Minify.kt

                        jarOutputStream.addJarEntry(JarFile.MANIFEST_NAME, manifestFile)
                    }
                    val visited = linkedSetOf<ClassDetails>()
                    for (classDetails in classGraph.entryPoints) {
                        visitTree(classDetails, classesDir, jarOutputStream, visited)
                    }
                }
            } catch (exception: Exception) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top