Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,485 for logic (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

            withDefaultSettingsIn("build-logic")
                .appendText("""rootProject.name = "build-logic"""")
            withKotlinDslPluginIn("build-logic")
            withFile("build-logic/src/main/kotlin/my-plugin.gradle.kts", "")
            val className = kotlinClassSourceFile("build-logic", """
                inline fun foo() { println("bar") }
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/RunTasksBeforeRunActionCrossVersion.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']"
        }
    
        // older versions do not run any tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildScriptChangesIntegrationTest.groovy

            def configurationCache = newConfigurationCacheFixture()
            def fixture = scriptChangeSpec.fixtureForProjectDir(file('build-logic'), testDirectory)
            fixture.setup()
            def build = { configurationCacheRunLenient(*fixture.buildArguments) }
            settingsFile << """
                includeBuild 'build-logic'
            """
    
            when:
            build()
    
            then:
            outputContains fixture.expectedOutputBeforeChange
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

    // effects and wraps it in a TFL::ControlNodeOp, which is made to depend on the
    // control token generated by the most recent preceding such operation, if
    // any. This copies the logic that is currently executed at runtime (in
    // tensorflow/lite/core/subgraph). That runtime logic will now be a no-op for
    // models that were generated with this pass.
    //
    // For purposes of this pass, an operator is considered to have/depend on side
    // effects if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. build-logic/documentation/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to generate Gradle's DSL reference, User Manual and Javadocs"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":build-update-utils"))
    
        implementation("com.github.javaparser:javaparser-core")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/software_architecture.puml

    database "External Repository" {
      [Spring Boot\nFramework] as SpringBoot
      [Android\nFramework] as Android
    }
    
    package "Application Layer" {
      [server-application]
      [android-app]
    }
    
    package "Business Logic Layer" {
      [user-feature]
      [admin-feature]
    }
    
    package "Domain Model Layer" {
      [domain-model] <-right- [state]
    }
    
    [server-application] -down-> [user-feature]
    [server-application] -down-> [admin-feature]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 886 bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

                        }
                    }
                }
            """
    
            file(extensionFile) << extensionCode
    
            file("build-logic/src/main/java/com/example/restricted/SoftwareTypeRegistrationPlugin.java") << defineSettingsPluginRegisteringSoftwareTypeProvidingPlugin()
            file("build-logic/src/main/java/com/example/restricted/RestrictedPlugin.java") << """
                package com.example.restricted;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/substitutorMarkers.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaTypeParameterSymbol
    import org.jetbrains.kotlin.analysis.api.types.KaSubstitutor
    import org.jetbrains.kotlin.analysis.api.types.KaType
    
    /**
     * A [KaSubstitutor] which substitution logic can be represented as a [Map] from a [KaTypeParameterSymbol] to corresponding [KaType]
     * This is an implementation details and Analysis API clients should not depend on the fact if some [KaSubstitutor] is [KaMapBackedSubstitutor] or not.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testfortran/fortran_test.go

    	if strings.Contains(fc, "gfortran") {
    		// TODO: This duplicates but also diverges from logic from cmd/go
    		// itself. For example, cmd/go merely adds -lgfortran without the extra
    		// library path work. If this is what's necessary to run gfortran, we
    		// should reconcile the logic here and in cmd/go.. Maybe this should
    		// become a cmd/go script test to share that logic.
    
    		// Add -m32 if we're targeting 386, in case this is a cross-compile.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 01:29:16 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/events.md

    # Lifespan Events
    
    You can define logic (code) that should be executed before the application **starts up**. This means that this code will be executed **once**, **before** the application **starts receiving requests**.
    
    The same way, you can define logic (code) that should be executed when the application is **shutting down**. In this case, this code will be executed **once**, **after** having handled possibly **many requests**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top