Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for corev1 (0.72 sec)

  1. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        implementation(project(":logging"))
        implementation(project(":process-services"))
        implementation(project(":persistent-cache"))
        implementation(project(":core-api"))
        implementation(project(":model-core"))
        implementation(project(":core"))
        implementation(project(":file-collections"))
        implementation(project(":file-temp"))
        implementation(project(":files"))
        implementation(project(":resources"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. build-logic/documentation/build.gradle.kts

    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":build-update-utils"))
    
        implementation("com.github.javaparser:javaparser-core")
        implementation("com.google.guava:guava")
        implementation("com.uwyn:jhighlight") {
            exclude(module = "servlet-api")
        }
        implementation("com.vladsch.flexmark:flexmark-all")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/build.gradle.kts

        api(libs.kotlinCompilerEmbeddable)
        api(libs.kotlinStdlib)
    
        implementation(project(":declarative-dsl-api"))
        implementation(libs.kotlinReflect)
        implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:1.6.2")
        implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2")
    
        testImplementation(libs.futureKotlin("test-junit5"))
        testImplementation("org.jetbrains:annotations:24.0.1")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/ListenerManagerExtensions.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.core
    
    import org.gradle.internal.event.ListenerManager
    
    
    inline fun <reified T> ListenerManager.getBroadcaster(): T =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 808 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache-base/build.gradle.kts

    }
    
    description = "Configuration cache internal API shared between :configuration-cache and codecs"
    
    dependencies {
        api(projects.configurationProblemsBase)
        api(projects.core)
        api(projects.coreApi)
        api(projects.graphSerialization)
        api(projects.stdlibJavaExtensions)
        api(projects.loggingApi)
    
        api(libs.kotlinStdlib)
    
        implementation(projects.baseServices)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/ServiceRegistrationExtensions.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.core
    
    import org.gradle.internal.service.ServiceRegistration
    
    
    /**
     * @param ServiceType The service to make visible.
     * @param ImplementationType The implementation type of the service.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/ProjectExtensions.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.core
    
    import org.gradle.api.Project
    import org.gradle.api.plugins.ExtraPropertiesExtension
    import org.gradle.internal.extensions.stdlib.uncheckedCast
    
    
    inline fun <reified T : Any> Project.setSingletonProperty(value: T) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/TaskInternalExtensions.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.core
    
    import org.gradle.api.Project
    import org.gradle.api.internal.GradleInternal
    import org.gradle.api.internal.TaskInternal
    import org.gradle.api.internal.project.ProjectInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/MethodCache.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.serialize.codecs.core.jos
    
    import org.gradle.internal.reflect.ClassInspector
    
    import java.lang.reflect.Method
    
    
    internal
    class MethodCache(
    
        private
        val predicate: Method.() -> Boolean
    
    ) {
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/FileSystemExtensions.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.core
    
    import org.gradle.internal.file.FileType
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import java.io.File
    import java.util.Arrays
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top