Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,264 for because3 (0.13 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-substitutionRule/kotlin/build.gradle.kts

    val conf by configurations.creating
    
    // tag::module_to_project_substitution[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute(module("org.utils:api"))
                .using(project(":api")).because("we work with the unreleased development version")
            substitute(module("org.utils:util:2.5")).using(project(":util"))
        }
    }
    // end::module_to_project_substitution[]
    // tag::project_to_module_substitution[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 796 bytes
    - Viewed (0)
  2. pkg/apis/core/validation/events_test.go

    					Kind:       "Node",
    				},
    				EventTime:           someTime,
    				ReportingController: "k8s.io/my-controller",
    				ReportingInstance:   "node-xyz",
    				Action:              "Do",
    				Reason:              "Because",
    			},
    			valid: true,
    			msg:   "Valid new Event",
    		},
    		{
    			Event: &core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "test",
    					Namespace: metav1.NamespaceSystem,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild/shade/transforms/ShadeClasses.kt

            outputDirectory.resolve(entryPointsFileName).bufferedWriter().use {
                Gson().toJson(classGraph.entryPoints.map { it.outputClassFilename }, it)
            }
        }
    }
    
    
    @DisableCachingByDefault(because = "Only filters the input artifact")
    abstract class FindClassTrees : TransformAction<TransformParameters.None> {
        @get:PathSensitive(PathSensitivity.RELATIVE)
        @get:InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-versionsWithConstraints/kotlin/build.gradle.kts

        constraints {
            implementation("org.apache.httpcomponents:httpclient:4.5.3") {
                because("previous versions have a bug impacting this application")
            }
            implementation("commons-codec:commons-codec:1.11") {
                because("version 1.9 pulled from httpclient has bugs affecting this application")
            }
        }
    }
    // end::dependency-constraints[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 684 bytes
    - Viewed (0)
  5. test/fixedbugs/issue29610.go

    // license that can be found in the LICENSE file.
    
    // Issue 29610: Symbol import and initialization order caused function
    // symbols to be recorded as non-function symbols.
    
    // This uses rundir not because we actually want to run the final
    // binary, but because we need to at least link it.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 11 00:45:49 UTC 2019
    - 429 bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/build.gradle.kts

        integTestImplementation(libs.commonsLang)
        integTestImplementation(libs.javaParser) {
            because("The Groovy docs inspects the dependencies at compile time")
        }
        integTestImplementation(libs.nativePlatform) {
            because("Required for SystemInfo")
        }
    
        testRuntimeOnly(project(":distributions-core")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        testImplementation(libs.kotlinCoroutines)
        testImplementation(libs.awaitility)
    
        integTestImplementation(project(":build-option")) {
            because("KotlinSettingsScriptIntegrationTest makes uses of FeatureFlag")
        }
        integTestImplementation(project(":language-groovy")) {
            because("ClassBytesRepositoryTest makes use of Groovydoc task.")
        }
        integTestImplementation(project(":internal-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/UndeclaredDependencyResolutionIntegrationTest.groovy

    // This tests current behaviour, not desired behaviour
    class UndeclaredDependencyResolutionIntegrationTest extends AbstractIntegrationSpec implements ArtifactTransformTestFixture {
        @ToBeFixedForConfigurationCache(because = "Transform nodes are not serialized when transform of project artifact is not declared as a dependency of another node")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaTest.kt

            assertThat(spec.stringLiteral, equalTo("foo${'$'}{'${'$'}'}${'$'}{'${'$'}'}bar"))
        }
    
        interface NonExistingType
    
        @Test
        fun `non existing type is represented as Inaccessible because NonAvailable`() {
    
            val type = SchemaType.of<NonExistingType>()
    
            val projectSchema = availableProjectSchemaFor(
                schemaWithExtensions("buildScan" to type),
                ClassPath.EMPTY
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/buildlifecycle/basic/kotlin/build.gradle.kts

    println("This is executed during the configuration phase.")
    
    tasks.register("configured") {
        println("This is also executed during the configuration phase, because :configured is used in the build.")
    }
    
    tasks.register("test") {
        doLast {
            println("This is executed during the execution phase.")
        }
    }
    
    tasks.register("testBoth") {
        doFirst {
            println("This is executed first during the execution phase.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 638 bytes
    - Viewed (0)
Back to top