Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,351 for Applied (0.11 sec)

  1. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Anže Sodja <******@****.***> 1717576978 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    			applied = true
    		} else if lp.Operation == networking.EnvoyFilter_Patch_INSERT_AFTER {
    			// Insert after without a filter match is same as ADD in the end
    			if !hasListenerFilterMatch(lp) {
    				lis.ListenerFilters = append(lis.ListenerFilters, proto.Clone(lp.Value).(*listener.ListenerFilter))
    				applied = true
    				continue
    			}
    			lis.ListenerFilters, applied = insertAfterFunc(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top