Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,253 for logic (0.04 sec)

  1. build-logic/build.gradle.kts

            val jvmArgs = listOf(buildLogicProperties, rootProperties).map { it.getProperty("org.gradle.jvmargs") }.toSet()
            if (jvmArgs.size > 1) {
                throw GradleException("gradle.properties and build-logic/gradle.properties have different org.gradle.jvmargs " +
                    "which may cause two daemons to be spawned on CI and in IDEA. " +
                    "Use the same org.gradle.jvmargs for both builds.")
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 02:52:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            configurationCache.assertStateLoaded()
    
            where:
            operator << ['systemProperty', 'environmentVariable']
        }
    
        def "system property from #systemPropertySource used as task and build logic input"() {
    
            given:
            def configurationCache = newConfigurationCacheFixture()
            createDir('root') {
                file('build.gradle.kts') << """
    
                    $greetTask
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. build-logic/uber-plugins/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins that combine and configure other plugins for different kinds of Gradle subprojects"
    
    dependencies {
        implementation("gradlebuild:basics")
    
        implementation(project(":buildquality"))
        implementation(project(":cleanup"))
        implementation(project(":dependency-modules"))
        implementation(project(":jvm"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 17:16:23 UTC 2023
    - 695 bytes
    - Viewed (0)
  4. src/runtime/race/doc.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package race implements data race detection logic.
    // No public interface is provided.
    // For details about the race detector see
    // https://golang.org/doc/articles/race_detector.html
    package race
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 21:38:55 UTC 2022
    - 386 bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Annotations for generating build logic instrumentation.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 772 bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * A package that contains transforms for build logic classpath.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:01:10 UTC 2023
    - 775 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

            where:
            description                                        | configuration
            "build logic does not define any additional tasks" | ""
            "build logic defines default tasks"                | "defaultTasks = ['broken']"
            "build logic injects tasks into start param"       | "gradle.startParameter.taskNames = ['broken']"
        }
    
        def "#description means run help task"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. releasenotes/notes/cni-no-sh.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 48746
    releaseNotes:
      - |
        **Fixed** an issue causing Istio CNI to stop functioning on minimal/locked down nodes (such as no `sh` binary).
        The new logic runs with no external dependencies, and will attempt to continue if errors are encountered (which could be caused by things like SELinux rules).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 21:29:52 UTC 2024
    - 445 bytes
    - Viewed (0)
  9. pkg/registry/admissionregistration/validatingwebhookconfiguration/strategy.go

    	"k8s.io/kubernetes/pkg/apis/admissionregistration/validation"
    )
    
    // validatingWebhookConfigurationStrategy implements verification logic for validatingWebhookConfiguration.
    type validatingWebhookConfigurationStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating validatingWebhookConfiguration objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. build-logic/lifecycle/src/main/kotlin/gradlebuild.lifecycle.gradle.kts

            group = "verification"
            dependsOn(
                gradle.includedBuild("build-logic-commons").task(":check"),
                gradle.includedBuild("build-logic").task(":check"),
                ":docs:checkstyleApi",
                ":internal-build-reports:allIncubationReportsZip",
                ":architecture-test:checkBinaryCompatibility",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:39:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top