Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 787 for patching (0.46 sec)

  1. pilot/pkg/networking/core/gateway.go

    			virtualHosts = append(virtualHosts, v)
    		}
    	}
    
    	util.SortVirtualHosts(virtualHosts)
    
    	routeCfg := &route.RouteConfiguration{
    		// Retain the routeName as its used by EnvoyFilter patching logic
    		Name:                           routeName,
    		VirtualHosts:                   virtualHosts,
    		ValidateClusters:               proto.BoolFalse,
    		IgnorePortInHostMatching:       !node.IsProxylessGrpc(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    For example, the `javaCompile` task action calls the Java compiler to transform source code into byte code.
    
    It is possible to dynamically modify task actions for tasks that are already registered.
    This is helpful for testing, patching, or modifying core build logic.
    
    Let's look at an example of a simple Gradle build with one `app` subproject that makes up a Java application – containing one Java class and using Gradle's `application` plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDynamicResolveIntegrationTest.groovy

            and:
            mavenHttpRepo.getModuleMetaData("org.test", "projectA").expectGet()
            matchingA.pom.expectGet()
            matchingA.artifact.expectGet()
    
            mavenHttpRepo.getModuleMetaData("org.test", "projectB").expectGet()
            matchingB.metaData.expectGet()
            matchingB.pom.expectGet()
            matchingB.artifact.expectGet()
    
            and:
            run 'retrieve'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

            when:
            1 * one.missing >> false
            0 * componentSelectionRules.apply(_, _)
    
            then:
            chooser.selectNewestComponent(one, two) == one
        }
    
        def "chooses newest matching version without requiring metadata"() {
            given:
            def a = component('1.2')
            def b = component('1.3')
            def c = component('2.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

            executedAndNotSkipped(":outer")
        }
    
        def "fails when using continuous build and watching is disabled"() {
            buildFile << """
                task myTask
            """
    
            expect:
            fails("myTask", "--no-watch-fs")
            failureDescriptionContains("Continuous build does not work when file system watching is disabled")
        }
    
        private void exitContinuousBuildSinceNoDeclaredInputs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  6. testing/integ-test/src/integTest/groovy/org/gradle/integtests/configuration/ExecuteDomainObjectCollectionCallbackBuildOperationTypeIntegrationTest.groovy

            "matching{true}.all" | 'pmd reports'             | ['java-library', 'pmd']        | 'pmdMain.reports'                        | ''
            "matching{true}.all" | 'codenarc reports'        | ['groovy', 'codenarc']         | 'codenarcMain.reports'                   | ''
            "matching{true}.all" | 'html dependency reports' | ['project-report']             | 'htmlDependencyReport.reports'           | ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorModuleExcludeResolveIntegrationTest.groovy

            where:
            name                     | excludeAttributes   | resolvedJars
            'non-matching artifact'  | [artifact: 'other'] | ['a-1.0.jar', 'b-1.0.jar', 'c-1.0.jar']
            'matching all artifacts' | [artifact: '*']     | ['a-1.0.jar']
            'matching artifact'      | [artifact: 'b']     | ['a-1.0.jar', 'c-1.0.jar']
            'matching self artifact' | [artifact: 'a']     | ['a-1.0.jar', 'b-1.0.jar', 'c-1.0.jar'] // Current behaviour, likely a bug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorDependencyExcludeResolveIntegrationTest.groovy

            where:
            name                    | excludeAttributes
            'non-matching module'   | [module: 'other']
            'non-matching artifact' | [name: 'other']
            'matching all modules'  | [module: '*']
            'matching module'       | [module: 'd']
            'matching artifact'     | [name: 'd']
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultDomainObjectCollectionTest.groovy

            expect:
            toList(container.matching(spec)) == ["a", "c"]
        }
    
        def getAllMatchingDomainObjectsReturnsEmptySetWhenNoMatches() {
            def spec = new Spec<CharSequence>() {
                boolean isSatisfiedBy(CharSequence element) {
                    return false
                }
            }
    
            container.add("a")
    
            expect:
            container.matching(spec).empty
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 23:50:58 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        HISTORICAL_PERFORMANCE("Historical Performance", "Once a week: Run performance tests for multiple Gradle versions", "HistoricalPerformance"),
        EXPERIMENTAL_VFS_RETENTION("Experimental FS Watching", "On demand checks to run tests with file system watching enabled", "ExperimentalVfsRetention"),
        EXPERIMENTAL_PERFORMANCE("Experimental Performance", "Try out new performance test running", "ExperimentalPerformance");
    
        val id: String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top