Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 299 for sublist (0.13 sec)

  1. platforms/core-execution/snapshots/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Tools to take immutable, comparable snapshots of files and other things"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
    
        api(libs.guava)
        api(libs.jsr305)
    
        implementation(libs.slf4jApi)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Tools to serialize data"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(projects.hashing)
        api(projects.stdlibJavaExtensions)
    
        api(libs.guava)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
        id("gradlebuild.jmh")
    }
    
    description = "Implementation of build cache controller and factories"
    
    dependencies {
        api(project(":build-cache-base"))
        api(project(":build-cache-packaging"))
        api(project(":build-cache-spi"))
        api(project(":build-operations"))
        api(project(":enterprise-operations"))
        api(project(":files"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = """Persistent caches on disk and cross process locking.
        | Mostly for persisting Maps to the disk.
        | Also contains implementations for in-memory caches in front of the disk cache.
    """.trimMargin()
    
    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/README.md

    # Grafana Dashboards
    
    This folder contains Istio's official Grafana dashboards.
    These get publish to [Grafana](https://grafana.com/orgs/istio/dashboards) during release, and are bundled into our
    [Grafana sample](../../../samples/addons/grafana.yaml).
    
    ## Jsonnet
    
    Newer dashboards are generated with [Jsonnet](https://jsonnet.org/) with the [Grafonnet](https://grafana.github.io/grafonnet/index.html).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  6. platforms/software/publish/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Base plugin for the maven and ivy publish plugins. Defines the publishing extension."
    
    errorprone {
        disabledChecks.addAll(
            "InlineMeSuggester", // 7 occurrences
            "MixedMutabilityReturnType", // 5 occurrences
            "StringCaseLocaleUsage", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.serviceProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-evaluator/build.gradle.kts

     */
    
    import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
    import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
    
    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
        id("gradlebuild.publish-public-libraries")
    
        embeddedKotlin("plugin.serialization")
    }
    
    description = "The evaluation pipeline for the Declarative language"
    
    tasks.withType<KotlinCompile>().configureEach {
        compilerOptions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApiEclipseModelCrossVersionSpec.groovy

        def setup() {
            def mavenRepo = new MavenFileRepository(file("maven-repo"))
            mavenRepo.module("org.example", "example-lib", "1.0").publish()
    
            settingsFile << "rootProject.name = 'root'; include 'sub'"
            buildFile << """allprojects { apply plugin: 'java' }
    repositories { maven { url '${mavenRepo.uri}' } }
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/MIT.txt

     a  copy  of this  software  and  associated  documentation files  (the
     "Software"), to  deal in  the Software without  restriction, including
     without limitation  the rights to  use, copy, modify,  merge, publish,
     distribute,  sublicense, and/or sell  copies of  the Software,  and to
     permit persons to whom the Software  is furnished to do so, subject to
     the following conditions:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinMessageBusProvider.kt

            public fun getInstance(project: Project): KotlinMessageBusProvider =
                project.getService(KotlinMessageBusProvider::class.java)
        }
    }
    
    /**
     * The [MessageBus] used to subscribe to and publish to Analysis API topics ([KotlinModificationTopics]).
     */
    public val Project.analysisMessageBus: MessageBus
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top