Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,740 for bkts (0.04 sec)

  1. platforms/documentation/docs/src/snippets/multiproject/customLayout/kotlin/settings.gradle.kts

    println(rootProject.name)
    println(project(":project-a").name)
    // end::lookup-project[]
    
    // tag::change-project[]
    project(":project-a").projectDir = file("custom/my-project-a")
    project(":project-a").buildFileName = "project-a.gradle.kts"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 384 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/mavenMigration/profiles/kotlin/build.gradle.kts

    val buildProfile: String? by project  // <1>
    
    apply(from = "profile-${buildProfile ?: "default"}.gradle.kts")  // <2>
    
    tasks.register("greeting") {
        // Store the message into a variable, because referencing extras from the task action
        // is not compatible with the configuration cache.
        val message = project.extra["message"]
        doLast {
            println(message)  // <3>
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 390 bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ktlint.gradle.kts

     */
    
    plugins {
        id("org.gradle.kotlin-dsl.ktlint-convention")
    }
    
    tasks {
        runKtlintCheckOverKotlinScripts {
            // Only check the build files, not all *.kts files in the project
            includes += listOf("*.gradle.kts")
        }
    
        withType<Test>().configureEach {
            shouldRunAfter(ktlintCheck)
        }
    }
    
    pluginManager.withPlugin("gradlebuild.code-quality") {
        tasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 01 11:07:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/kotlin/build.gradle.kts

                }
            }
        }
    }
    
    // Apply the plugin
    apply<GreetingPlugin>()
    // end::no-script-plugin[]
    
    // tag::script-plugin[]
    apply(from = "other.gradle.kts")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 407 bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/settings.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    include("app")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 680 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/initScripts/multiVersionCacheRetention/kotlin/gradleUserHome/init.d/cache-settings.gradle.kts

    if (GradleVersion.current() >= GradleVersion.version("8.0")) {
        apply(from = "gradle8/cache-settings.gradle.kts")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 119 bytes
    - Viewed (0)
  7. build-logic/settings.gradle.kts

                }
            }
            mavenCentral()
            gradlePluginPortal()
        }
    }
    
    apply(from = "../gradle/shared-with-buildSrc/mirrors.settings.gradle.kts")
    
    // Utilities for updating the build itself which are not part of the usual build process
    include("build-update-utils")
    
    // Collection of plugins for the root build to configure lifecycle, reporting and IDE integration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. cmd/bucket-replication-utils_gen.go

    				return
    			}
    		case "bkt":
    			z.Bucket, bts, err = msgp.ReadStringBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Bucket")
    				return
    			}
    		case "obj":
    			z.Object, bts, err = msgp.ReadStringBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Object")
    				return
    			}
    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  9. build-logic-commons/build-platform/build.gradle.kts

            api("org.apache.ant:ant:1.10.13") // Bump the version brought in transitively by gradle-guides-plugin
            api("com.gradle:develocity-gradle-plugin:3.17.4") // Sync with `settings.gradle.kts`
            api("com.gradle.publish:plugin-publish-plugin:1.2.1")
            api("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.0.1")
            api("me.champeau.gradle:japicmp-gradle-plugin:0.4.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. settings.gradle.kts

        id("io.github.gradle.gradle-enterprise-conventions-plugin").version("0.10.1")
        id("org.gradle.toolchains.foojay-resolver-convention") version ("0.8.0")
    //    id("net.ltgt.errorprone").version("3.1.0")
    }
    
    includeBuild("build-logic-commons")
    includeBuild("build-logic")
    
    apply(from = "gradle/shared-with-buildSrc/mirrors.settings.gradle.kts")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top