Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,387 for logic (0.24 sec)

  1. build-logic-commons/build.gradle.kts

    description = "Provides a set of plugins that are shared between the Gradle and build-logic builds"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 11 14:22:22 UTC 2021
    - 183 bytes
    - Viewed (0)
  2. build-logic/profiling/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins that configure profiling tools (jmh and build scans)"
    
    dependencies {
        implementation("com.gradle:develocity-gradle-plugin")
    
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":documentation"))
    
        implementation("me.champeau.jmh:jmh-gradle-plugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 430 bytes
    - Viewed (0)
  3. pkg/registry/networking/ingress/strategy.go

    )
    
    const (
    	annotationIngressClass = "kubernetes.io/ingress.class"
    )
    
    // ingressStrategy implements verification logic for Replication Ingress.
    type ingressStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Replication Ingress objects.
    var Strategy = ingressStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 01:42:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("build-organization/sharing-convention-plugins-with-build-logic")
                displayName = "Sharing convention plugins with build logic build"
                description = "Reuse convention plugins in both main build and build logic build"
                category = "Build organization"
                common {
                    from(templates.javaApplicationAsSubproject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/toolchain-management/groovy/buildSrc/src/main/java/org/myorg/JavaToolchainResolverImplementation.java

            implements JavaToolchainResolver { // <1>
    
        public Optional<JavaToolchainDownload> resolve(JavaToolchainRequest request) { // <2>
            return Optional.empty(); // custom mapping logic goes here instead
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 613 bytes
    - Viewed (0)
  6. pkg/registry/networking/ingressclass/strategy.go

    	"k8s.io/kubernetes/pkg/apis/networking"
    	"k8s.io/kubernetes/pkg/apis/networking/validation"
    )
    
    // ingressClassStrategy implements verification logic for IngressClass
    // resources.
    type ingressClassStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating
    // IngressClass objects.
    var Strategy = ingressClassStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:58:39 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  7. pkg/registry/networking/ipaddress/strategy.go

    )
    
    // ipAddressStrategy implements verification logic for Replication.
    type ipAddressStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // noopNameGenerator does not generate names, it just returns the base.
    type noopNameGenerator struct{}
    
    func (noopNameGenerator) GenerateName(base string) string {
    	return base
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:58:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. build-logic/lifecycle/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to define entry point lifecycle tasks used for development (e.g., sanityCheck)"
    
    dependencies {
        implementation("gradlebuild:basics")
    
        implementation("com.google.code.gson:gson")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 293 bytes
    - Viewed (0)
  9. cmd/bucket-handlers_test.go

    	if err != nil {
    		t.Fatalf("Test %s: Failed to create HTTP request for RemoveBucketHandler: <ERROR> %v", instanceType, err)
    	}
    	// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    	// Call the ServeHTTP to execute the handler.
    	apiRouter.ServeHTTP(rec, req)
    	switch rec.Code {
    	case http.StatusOK, http.StatusCreated, http.StatusAccepted, http.StatusNoContent:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. build-logic-commons/gradle-plugin/build.gradle.kts

    plugins {
        `kotlin-dsl`
    }
    
    group = "gradlebuild"
    
    description = "Provides plugins used to create a Gradle plugin with Groovy or Kotlin DSL within build-logic builds"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    
    dependencies {
        compileOnly("com.gradle:develocity-gradle-plugin:3.17.4")
    
        api(platform(project(":build-platform")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 977 bytes
    - Viewed (0)
Back to top