Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for usually (0.33 sec)

  1. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

            val subProjectFolders = subprojectRoots.map { it.listFiles(File::isDirectory).asList() }.flatten().filter { dir ->
                // filter out the directories that have only a `build` subdirectory - this usually happens after branch switching
                dir.listFiles { _: File, name: String -> name != "build" }!!.isNotEmpty()
            }
            assertFalse(subProjectFolders.isEmpty())
            return subProjectFolders
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 10:00:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    | 7  | `@apiSpec`    | Adds a “API Requirements” heading                                              | A description that applies equally to all valid implementations of the method, including preconditions, postconditions, etc                                                                                        |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                it is JavaCompile || it is GroovyCompile
            }
            dependsOn(compileTasks)
        }
    
        tasks.register("compileAllProduction") {
            description = "Compile all production source code, usually only main and testFixtures."
            val compileTasks = project.tasks.matching {
                // Currently, we compile everything since the Groovy compiler is not deterministic enough.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top