Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 620 for logic (0.1 sec)

  1. releasenotes/notes/skip-graceful-termination.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue: [36686]
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 03:38:52 UTC 2023
    - 180 bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildInputsChangesIntegrationTest.groovy

                inputName == 'gradle.properties'
            )
    
            given:
            def configurationCache = newConfigurationCacheFixture()
            def fixture = new BuildLogicChangeFixture(file('build-logic'))
            fixture.setup()
            fixture.buildFile << """
    
                interface Params : $ValueSourceParameters.name {
                    val value: Property<String>
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/settings.gradle.kts

    dependencyResolutionManagement {
        repositories {
            gradlePluginPortal()
            google()
        }
    }
    includeBuild("../platforms")
    
    rootProject.name = "build-logic"
    include("commons")
    include("java-library")
    include("kotlin-library")
    include("android-application")
    include("spring-boot-application")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 334 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/plugins/pluginProject/kotlin/database-logic/build.gradle.kts

    repositories {
        mavenCentral()
    }
    
    java {
        toolchain.languageVersion.set(JavaLanguageVersion.of(11))
    }
    
    tasks.test {
        useJUnitPlatform()
    }
    
    kotlin {
        jvmToolchain(11)
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 289 bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/README.md

    This wrapper solves for that by fixing the wrapper lib to have binary detection logic that will work in *all* contexts where we use it, rely fully on binary autodetection in all spots, properly handling `iptables/ip6tables` variants..
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/pluginProject/kotlin/settings.gradle.kts

    // tag::include-subprojects[]
    include("app")
    include("data-model")
    //include("database-logic")
    // end::include-subprojects[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 06:14:51 UTC 2024
    - 162 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginTasksIntegrationTest.kt

        }
    
    
        @Test
        fun `applied precompiled script plugin is reloaded upon change`() {
            // given:
            withFolders {
                "build-logic" {
                    withFile(
                        "settings.gradle.kts",
                        """
                            $defaultSettingsScript
                            include("producer", "consumer")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 10:30:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. docs/en/docs/how-to/custom-request-and-route.md

    # Custom Request and APIRoute class
    
    In some cases, you may want to override the logic used by the `Request` and `APIRoute` classes.
    
    In particular, this may be a good alternative to logic in a middleware.
    
    For example, if you want to read or manipulate the request body before it is processed by your application.
    
    !!! danger
        This is an "advanced" feature.
    
        If you are just starting with **FastAPI** you might want to skip this section.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/kubelet.go

    			options.CfgPath,
    			options.ImageRepository,
    			options.NodeCRISocket,
    			options.NodeName,
    			options.Patches,
    			options.DryRun,
    		},
    	}
    }
    
    // runKubeletStart executes kubelet start logic.
    func runKubeletStart(c workflow.RunData) error {
    	data, ok := c.(InitData)
    	if !ok {
    		return errors.New("kubelet-start phase invoked with an invalid data struct")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 20 09:18:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. build-logic/idea/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin that configures IntelliJ's idea-ext plugin"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 297 bytes
    - Viewed (0)
Back to top