Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 725 for patching (0.28 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileTreeIntegrationTest.groovy

            [
                'filter { it.path.endsWith "ok" }',
                'matching(patternSet)',
                'matching(patternSet).filter { it.file }',
                'matching(patternSet).asFileTree.filter { it.file }',
                'filter { it.path.endsWith "ok" }.asFileTree',
                'filter { it.file }.asFileTree.matching(patternSet)',
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. .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)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    Enables project isolation, which enables configuration caching.
    +
    _Default is `false`._
    
    `org.gradle.vfs.verbose=(true,false)`::
    Configures verbose logging when <<file_system_watching.adoc#sec:daemon_watch_fs,watching the file system>>.
    +
    _Default is `false`._
    
    `org.gradle.vfs.watch=(true,false)`::
    Toggles <<file_system_watching.adoc#sec:daemon_watch_fs,watching the file system>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

         * for variants that are selected by means other than attribute matching.
         *
         * Note: This does not need to be called for variants selected via attribute matching, since
         * attribute matching ensures selected variants are compatible with the requested attributes.
         */
        private void validateVariantAttributes(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/isolation.yaml

          sectionName: empty-hostname
      hostnames:
        - "bar.com"
        - "*.example.com" # request matching is prevented by the isolation wildcard-example-com listener
        - "*.foo.example.com" # request matching is prevented by the isolation wildcard-foo-example-com listener
        - "abc.foo.example.com" # request matching is prevented by the isolation of abc-foo-example-com listener
      rules:
        - matches:
            - path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            e2.message == message
                .replace("tasks that match", "excluded tasks that match")
                .replace("matching tasks", "matching excluded tasks")
    
            where:
            path        | message
            ""          | "Cannot locate matching tasks for an empty path. The path should include a task name (for example ':help' or 'help')."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - Added warning for dup ports update/patching in pod's container ports and service ports. ([#113245](https://github.com/kubernetes/kubernetes/pull/113245), [@pacoxu](https://github.com/pacoxu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    // is a wildcard.
    //
    // The candidates for a given module path matching (or containing a package
    // matching) a wildcard query depend only on the initial build list, but the set
    // of modules may be expanded by other queries, so wildcard queries need to be
    // re-evaluated whenever a potentially-matching module path is added to the
    // build list.
    func (r *resolver) performWildcardQueries(ctx context.Context) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/policyattachment_test.go

    			enableSelectorPolicies: true,
    		},
    		{
    			name:      "waypoint and non-matching targetRef",
    			selection: sampleWaypoint,
    			policy: &mockPolicyTargetGetter{
    				targetRef: sampleTargetRef,
    			},
    			expected:               false,
    			enableSelectorPolicies: true,
    		},
    		{
    			name:      "waypoint and matching targetRefs",
    			selection: sampleWaypoint,
    			policy: &mockPolicyTargetGetter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

        }
    
        protected static Matcher<? super String> matching(String pattern) {
            def compiledPattern = Pattern.compile(pattern)
            return matching({ it.appendText("a string matching the pattern").appendValue(pattern) }, { String item ->
                compiledPattern.matcher(item).matches()
            } as Predicate<String>)
        }
    
        protected static <T> Matcher<T> matching(Consumer<Description> describe, Predicate<T> match) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top