Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for folder2 (0.11 sec)

  1. ReadMe.md

        
        ./gradlew -Dhttp.socketTimeout=60000 -Dhttp.connectionTimeout=60000
    
    ## Important gradle tasks
    
    - `clean` - clean build results
    - `dist` - assembles the compiler distribution into `dist/kotlinc/` folder
    - `install` - build and install all public artifacts into local maven repository
    - `coreLibsTest` - build and run stdlib, reflect and kotlin-test tests
    - `gradlePluginTest` - build and run gradle plugin tests
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

         *
         * #### Examples
         *
         *  - The name of the module is being changed.
         *  - The module's content roots are being changed, such as adding another source folder to a source module.
         *  - If module A depends on module B and module B is being removed, in addition to the removal event for module B, module A also
         *    receives an update event.
         */
        UPDATE,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

            }
        }
    }
    
    /**
     * Collect source file path from the given [root]
     *
     * E.g., for `project/app/src` as a [root], this will walk the file tree and
     * collect all `.kt`, `.kts`, and `.java` files under that folder.
     *
     * Note that this util gracefully skips [IOException] during file tree traversal.
     */
    internal fun collectSourceFilePaths(root: Path): List<Path> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-65889`](https://youtrack.jetbrains.com/issue/KT-65889) wasmJsBrowserDistribution doesn't copy wasm binaries to dist folder
    - [`KT-66733`](https://youtrack.jetbrains.com/issue/KT-66733) wasmWasiTest is not compatible with Gradle Configuration Cache
    - [`KT-64851`](https://youtrack.jetbrains.com/issue/KT-64851) Wasm. Support Gradle configuration cache
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                        // It is just best practice, not enforced by language spec.
                        // So, here, we just stop iterating upward the folder structure.
                        break
                    }
                }
                javaDir?.let { result += it }
            }
            return result.toList()
        }
    
        fun getAllBinaryRoots(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top