Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 619 for logic (0.1 sec)

  1. platforms/documentation/docs/src/samples/readme-templates/multi-common-summary.adoc.template

    * Create a modular software project by combining multiple subprojects
    * Share build configuration logic between subprojects using convention plugins in `buildSrc`
    * Run similar named tasks in all subprojects
    * Run a task in a specific subproject
    * Build, bundle and run the application
    
    == Next steps
    
    When your project grows, you might be interested in more details how to configure JVM projects, structuring multi-project builds and dependency management:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 718 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/overview/userguide.adoc

    * Gradle can automate a wide range of software build scenarios using either its built-in functionality, third-party plugins, or custom build logic.
    * Gradle provides a high-level, declarative, and expressive build language that makes it easy to read and write build logic.
    * Gradle is fast, scalable, and can build projects of any size and complexity.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. 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)
  4. pkg/registry/admissionregistration/mutatingwebhookconfiguration/strategy.go

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

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to generate samples using internal build init APIs"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("org.gradle.guides:gradle-guides-plugin")
        implementation("org.asciidoctor:asciidoctor-gradle-jvm") {
            because("This is a transitive dependency of 'gradle-guides-plugin' not declared there")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 442 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. releasenotes/notes/ingress-routes.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - https://github.com/istio/istio/issues/35033
    releaseNotes:
    - |
      **Fixed** an issue where the route precedence logic of istio ingress is different from kubernetes ingress doc.
    - |
      **Added** a feature flag `PILOT_LEGACY_INGRESS_BEHAVIOR`, default to false.
      If this is set to true, istio ingress will perform the legacy behavior, 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 20 16:36:36 UTC 2022
    - 514 bytes
    - Viewed (0)
Back to top