Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,485 for logic (0.14 sec)

  1. platforms/documentation/docs/src/snippets/bestPractices/logicDuringConfiguration-dont/groovy/settings.gradle

    rootProject.name = 'logic-during-configuration-dont'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 53 bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIsolationIntegrationTest.groovy

        }
    
        def 'lifecycle actions preserve user code application context for plugins'() {
            given:
            groovyFile "build-logic/build.gradle", '''
                plugins {
                    id 'groovy-gradle-plugin'
                }
            '''
            groovyFile "build-logic/src/main/groovy/my-settings-plugin.settings.gradle", """
                gradle.lifecycle.beforeProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. 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)
  4. pkg/registry/coordination/lease/strategy.go

    	"k8s.io/kubernetes/pkg/apis/coordination"
    	"k8s.io/kubernetes/pkg/apis/coordination/validation"
    )
    
    // leaseStrategy implements verification logic for Leases.
    type leaseStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Lease objects.
    var Strategy = leaseStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/c/experimental/saved_model/core/revived_types/flat_tensor_function.h

    // EagerContext, and any TensorHandle captures associated with the function. The
    // MakeCallOp method handles the logic of marshaling captures after the user
    // provided inputs automatically.
    // Note(bmzhao): This class is mainly intended to house low-level reusable
    // function logic between SignatureDefFunction and ConcreteFunction, which
    // present higher level interfaces. This type does *not* hold any "function
    // metadata".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 21:03:41 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top