Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,004 for patching (0.18 sec)

  1. 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)
  2. 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)
  3. istioctl/pkg/checkinject/checkinject_test.go

    				{
    					Name:     "istio-sidecar-injector",
    					Revision: "default",
    					Reason: "No matching namespace labels (istio.io/rev=default, istio-injection=enabled) " +
    						"or pod labels (istio.io/rev=default, sidecar.istio.io/inject=true)",
    				},
    				{
    					Name:     "istio-sidecar-injector-1-16",
    					Revision: "1-16",
    					Reason:   "No matching namespace labels (istio.io/rev=1-16) or pod labels (istio.io/rev=1-16)",
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/search/search.go

    	"path"
    	"path/filepath"
    	"strings"
    )
    
    // A Match represents the result of matching a single package pattern.
    type Match struct {
    	pattern string   // the pattern itself
    	Dirs    []string // if the pattern is local, directories that potentially contain matching packages
    	Pkgs    []string // matching packages (import paths)
    	Errs    []error  // errors matching the patterns to packages, NOT errors loading those packages
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. 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)
  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. src/cmd/go/internal/modget/query.go

    	// A path-literal query results in only one set: the path itself, which
    	// may resolve to either a package path or a module path.
    	//
    	// A wildcard query results in one set for each matching module path, each
    	// module for which the matching version contains at least one matching
    	// package, and (if no other modules match) one candidate set for the pattern
    	// overall if no existing match is identified in the build list.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

            assertSuggestsReviewingAlgorithm()
            assertSuggestsViewingDocs("No matching variant errors are explained in more detail at https://docs.gradle.org/${GradleVersion.current().version}/userguide/variant_model.html#sub:variant-no-match.")
        }
    
        @ToBeFixedForConfigurationCache
        def "demonstrate no matching graph variants selection failure for externalDep"() {
            noMatchingGraphVariantsForExternalDep.prepare()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    [[finding_problems]]
    == Finding problems with task output caching
    
    Below we describe a step-by-step process that should help shake out any problems with caching in your build.
    
    === Ensure incremental build works
    
    First, make sure your build does the right thing without the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

                        }
                        FileSystemWatchingStatistics statisticsSinceLastBuild;
                        if (watchRegistry == null) {
                            if (couldDetectUnsupportedFileSystems) {
                                context.setStatus("Starting file system watching");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top