Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,329 for Applied (0.13 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyClasspathIntegrationTest.groovy

            BaseBuildScanPluginCheckInFixture getTransitivePluginFixture() {
                // Develocity plugin is auto-applied but the Gradle Enterprise plugin is a transitive dependency
                gradleEnterpriseFixture
            }
    
            @Override
            void assertNotAutoApplied(String output) {
                // Develocity plugin is applied neither as a transitive dependency, nor via auto-application mechanism as Gradle Enterprise plugin is present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:43:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyIntegrationTest.groovy

            when:
            gradleEnterpriseFixture.publishDummyPlugin(executer)
            settingsFile << gradleEnterpriseFixture.plugins()
    
            and:
            runBuildWithScanRequest()
    
            then:
            pluginNotApplied()
        }
    
        def "does not auto-apply plugin when Gradle Enterprise plugin is applied using plugin class name"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/types/BytecodeInterceptorType.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.internal.instrumentation.api.types;
    
    public enum BytecodeInterceptorType {
    
        /**
         * An interceptor that is applied to the bytecode always.
         */
        INSTRUMENTATION(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:55:59 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginTarget.java

    import javax.annotation.Nullable;
    
    /**
     * Represents the target that a plugin should be applied to, such as a Gradle, Settings or Project object.
     * This is used to apply a plugin to a target in a way that is appropriate for that target, such as adding
     * additional functionality specific to the target or disallowing certain types of plugins to be applied.
     */
    public interface PluginTarget {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. 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)
  10. istioctl/pkg/authz/authz.go

    var configDumpFile string
    
    func checkCmd(ctx cli.Context) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "check [<type>/]<name>[.<namespace>]",
    		Short: "Check AuthorizationPolicy applied in the pod.",
    		Long: `Check prints the AuthorizationPolicy applied to a pod by directly checking
    the Envoy configuration of the pod. The command is especially useful for inspecting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top