Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,741 for Applied (0.15 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ScriptChangeFixture.groovy

                    case ScriptDiscovery.DEFAULT:
                        return new ScriptChangeFixture(rootProjectDir, defaultScriptFile, buildArguments)
                    case ScriptDiscovery.APPLIED:
                        String appliedScriptName = "applied${scriptFileExtension}"
                        TestFile appliedScriptFile = new TestFile(defaultScriptFile.parentFile, appliedScriptName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    A script plugin is an ad-hoc plugin, typically written and applied in the same build script.
    It is applied using the <<sec:old_plugin_application,legacy application method>>:
    
    [[sec:binary_plugin_example]]
    [source, build.gradle.kts]
    ----
    class MyPlugin : Plugin<Project> {
        override fun apply(project: Project) {
            println("Plugin ${this.javaClass.simpleName} applied on ${project.name}")
        }
    }
    
    apply<MyPlugin>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.yaml

        template: "This EnvoyFilter does not have a priority and has a relative patch operation set which can cause the EnvoyFilter not to be applied. Using the INSERT_FIRST of ADD option or setting the priority may help in ensuring the EnvoyFilter is applied correctly."
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    The difference between these types of plugins lies in the scope of their application:
    
    Project Plugin :: A project plugin is a plugin that is applied to a specific project in a build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentControl.java

        private AgentControl() {}
    
        /**
         * Checks if the instrumentation agent class is applied to the current JVM.
         *
         * @return {@code true} if the agent was applied
         */
        public static boolean isInstrumentationAgentApplied() {
            Method isAppliedMethod = findAgentMethod(INSTRUMENTATION_AGENT_CLASS_NAME, "isApplied");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalConfigurationGraphResolveMetadata.java

         *
         * @param artifactTransformer A transformer applied to all artifacts and sub-variant artifacts.
         *
         * @return A copy of this metadata, with the given transformer applied to all artifacts.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/api/IsolatedAction.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api;
    
    import java.io.Serializable;
    
    /**
     * Defines an action that is applied to objects of type {@link T}, with each target getting its own isolated action instance.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslRegressionsTest.kt

        }
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/24481")
        fun `applied project scripts don't have project accessors`() {
            withFile("applied.gradle.kts", """
                println(java.sourceCompatibility)
            """)
            withBuildScript("""
                plugins { java }
                apply(from = "applied.gradle.kts")
            """)
            buildAndFail("help").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:57:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/software/schemaFromSoftwareTypes.kt

    }
    
    
    /**
     * Support for software types that are configured as conventions in the settings build script.
     *
     * Conventions are not applied when process the settings build script, but are captured and applied when a project build script references a given software type.
     */
    internal
    fun EvaluationSchemaBuilder.softwareTypesConventions(
        schemaTypeToExtend: KClass<*>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationsList.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.annotations
    
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.name.ClassId
    
    /**
     * A list of annotations applied for some entity.
     *
     * Annotation owners are usually implement [KaAnnotated]
     */
    public interface KaAnnotationList : List<KaAnnotation>, KaLifetimeOwner {
        @Deprecated("Use the annotation list as a 'List'.")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top