Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,206 for Applied (0.11 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginCheckInIntegrationTest.groovy

        def "detects that the build scan plugin has been [applied=#applied]"() {
            given:
            if (applied) {
                applyPlugin()
            }
    
            settingsFile << """
                println "present: " + services.get($GradleEnterprisePluginManager.name).present
            """
    
            when:
            succeeds "t"
    
            then:
            output.contains("present: ${applied}")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TapiAgentInstrumentationCrossVersionSpec.groovy

            agentStatusWas(true)
        }
    
        private void agentWasNotApplied() {
            agentStatusWas(false)
        }
    
        private void agentStatusWas(boolean applied) {
            assert buildOutput.contains("agent applied = $applied")
        }
    
        private void withAgentEnabledInProperties() {
            withAgentStatusInProperties(true)
        }
    
        private void withAgentDisabledInProperties() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginConfigIntegrationTest.groovy

            then:
            plugin.assertAutoApplied(output, true)
            outputContains("${plugin.id} is already applied")
        }
    
        @ToBeImplemented("https://github.com/gradle/gradle/issues/24884")
        def "is not auto-applied when --scan is used and applied via init script in beforeSettings"() {
            given:
            def pluginArtifactId = "com.gradle:develocity-gradle-plugin:${plugin.runtimeVersion}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

            then:
            agentWasApplied()
        }
    
        def "agent is not applied if disabled in the command-line"() {
            given:
            withoutAgent()
            withDumpAgentStatusTask()
    
            when:
            succeeds()
    
            then:
            agentWasNotApplied()
        }
    
        def "agent is applied to the daemon process running the build"() {
            given:
            withAgent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotated.kt

    }
    
    /**
     * A list of annotations applied with specified [classId].
     *
     * @see [KaAnnotationList.classIds]
     */
    @Deprecated("Use 'annotations' instead.", replaceWith = ReplaceWith("annotations[classId]"))
    public fun KaAnnotated.annotationsByClassId(classId: ClassId): List<KaAnnotation> {
        return annotations[classId]
    }
    
    /**
     * A list of annotations applied.
     *
     * @see [KaAnnotationList.classIds]
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top