Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for Applied (0.19 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginManagerTest.groovy

            manager.withPlugin("plugin") { applied << it }
    
            then:
            applied.empty
    
            when:
            def dir = testDirectoryProvider.createDir("other")
            groovyLoader.addURL(dir.toURI().toURL())
            addPluginId(dir, "plugin", pluginClass)
            manager.apply(pluginClass)
    
            then:
            applied.size() == 1
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanBuildFailureHintIntegrationTest.groovy

        }
    
        def "does not render hint for successful build without applied plugin"() {
            given:
            buildFile << """
                task $DUMMY_TASK_NAME
            """
    
            when:
            succeeds(DUMMY_TASK_NAME)
    
            then:
            result.assertNotOutput(SCAN)
        }
    
        def "renders hint for failing build without applied plugin and #description"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:40:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

            mavenRepo.module("org", "foo", '1.1').publish()
            mavenRepo.module("org", "bar", '1.0').dependsOn(foo11).publish()
        }
    
        void "force resolution strategy is applied to dependency constraints"() {
            given:
            buildFile << """
                dependencies {
                    conf 'org:bar:1.0'
                    constraints {
                        conf 'org:foo:1.1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/tests/tac-filter.mlir

    // expected-remark@below {{Tac filter (1) specified but not applied to any op}}
    // expected-remark@below {{Tac filter (2): filter type: op filter, filter_pattern: "^test_op"}}
    // expected-remark@below {{Tac filter (2) specified but not applied to any op}}
    module {
      // CHECK-LABEL: testFunctionSkiped
      // expected-remark@+1 {{filtered by tac filter (0)}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 01:08:29 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. pkg/proxy/endpointslicecache.go

    		change.previous = cache.getEndpointsMap(serviceNN, esTracker.applied)
    
    		for name, sliceData := range esTracker.pending {
    			if sliceData.remove {
    				delete(esTracker.applied, name)
    			} else {
    				esTracker.applied[name] = sliceData
    			}
    
    			delete(esTracker.pending, name)
    		}
    
    		change.current = cache.getEndpointsMap(serviceNN, esTracker.applied)
    		changes[serviceNN] = change
    	}
    
    	return changes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/crossVersionTest/groovy/org/gradle/plugin/devel/PrecompiledGroovyPluginCrossVersionSpec.groovy

            precompiledGroovyPluginBuiltWith(version(getCurrent()))
    
            when:
            def result = pluginTaskExecutedWith(version(getPrevious())).run()
    
            then:
            result.output.contains("$PLUGIN_ID applied")
            result.output.contains("$PLUGIN_TASK executed")
        }
    
        def "precompiled Groovy plugin built with Gradle 6.4+ can be used with current Gradle version"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/LocationAwareScriptEvaluationIntegrationTest.kt

         * The Kotlin DSL provider handles this in isolation,
         * thus hiding the location of exceptions thrown by groovy scripts applied from kotlin scripts.
         *
         * This test exercises the current behavior.
         */
        @Test
        fun `location of exception thrown by groovy script applied from kotlin script shadowed by the kotlin location`() {
    
            val kotlinScript = withBuildScript("""apply(from = "other.gradle")""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginContainer.java

        /**
         * Executes or registers an action for a plugin with given id.
         * If the plugin was already applied, the action is executed.
         * If the plugin is applied sometime later the action will be executed after the plugin is applied.
         * If the plugin is never applied, the action is never executed.
         * The behavior is similar to {@link #withType(Class, org.gradle.api.Action)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentSelectionRules.java

    import org.gradle.api.Action;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Represents a container for component selection rules.  Rules can be applied as part of the
     * resolutionStrategy of a configuration and individual components can be explicitly accepted
     * or rejected by rule.  Components that are neither accepted or rejected will be subject to
     * the default version matching strategies.
     *
     * <pre class='autoTested'>
     *     configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

             * the set of [auto-applied plugins][org.gradle.plugin.management.internal.autoapply.AutoAppliedPluginHandler].
             */
            object ApplyDefaultPluginRequests : StageTransition, Instruction()
    
            /**
             * Causes the target scope to be closed by applying the plugin requests collected during the execution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top