Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 793 for patching (0.14 sec)

  1. 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)
  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/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiIntegrationTest.groovy

                   .assertHasCause("Cannot find a Java installation on your machine matching this tasks requirements: {languageVersion=99, vendor=matching('exotic'), implementation=vendor-specific} for ")
                   .assertHasCause("No matching toolchain could be found in the locally installed toolchains or the configured toolchain download repositories. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"focus": helpText(
    		"Restricts to samples going through a node matching regexp",
    		"Discard samples that do not include a node matching this regexp.",
    		"Matching includes the function name, filename or object name."),
    	"ignore": helpText(
    		"Skips paths going through any nodes matching regexp",
    		"If set, discard samples that include a node matching this regexp.",
    		"Matching includes the function name, filename or object name."),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            executedAndNotSkipped(":includedBuild:jar")
            assertWatchedHierarchies([includedBuild])
            postBuildOutputContains("Watching too many directories in the file system (watching 2, limit 1), dropping some state from the virtual file system")
        }
    
        def "does not show unsupported watching hierarchies warning for test directory"() {
            buildFile << """
                task myTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            list.matching { it != "b" }.lastIndexOf("c") == 1
            list.matching { it != "b" }.lastIndexOf("b") == -1
            list.matching { it != "b" }.lastIndexOf("z") == -1
        }
    
        def "can get ListIterator over filtered elements"() {
            given:
            list.addAll(["a", "b", "c"])
    
            when:
            def iter = list.matching { it != "b" }.listIterator()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

    import java.util.ArrayList;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Set;
    
    /**
     * A {@link ArtifactVariantSelector} that uses attribute matching to select a matching set of artifacts.
     *
     * If no producer variant is compatible with the requested attributes, this selector will attempt to construct a chain of artifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. 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)
Back to top