Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,224 for patching (0.13 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectContainerIntegrationTest.groovy

                    }
                }
            """
    
            expect:
            succeeds "verify"
        }
    
        def "chained lookup of testContainer.withType.matching"() {
            buildFile << """
                testContainer.withType(testContainer.type).matching({ it.name.endsWith("foo") }).all { element ->
                    assert element.name in ['foo', 'barfoo']
                }
    
                testContainer.register("foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_patterns.txt

    cp go.mod.orig go.mod
    ! go get rsc.io/quote/x...
    stderr 'go: module rsc.io/quote@upgrade found \(v1.5.2\), but does not contain packages matching rsc.io/quote/x...'
    ! grep 'require rsc.io/quote' go.mod
    
    ! go get rsc.io/quote/x/...
    stderr 'go: module rsc.io/quote@upgrade found \(v1.5.2\), but does not contain packages matching rsc.io/quote/x/...'
    ! grep 'require rsc.io/quote' go.mod
    
    # If a pattern matches no packages within a module, the module should not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadIntegrationTest.groovy

                   .assertHasCause("No matching toolchain could be found in the locally installed toolchains or the configured toolchain download repositories. " +
                       "Some toolchain resolvers had provisioning failures: custom (Unable to download toolchain matching the requirements " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/prune.go

    				foundReserved = true
    				break
    			}
    		}
    		if !foundReserved {
    			funcName = funcName[:ind[0]]
    			break
    		}
    	}
    	return funcName
    }
    
    // Prune removes all nodes beneath a node matching dropRx, and not
    // matching keepRx. If the root node of a Sample matches, the sample
    // will have an empty stack.
    func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
    	prune := make(map[uint64]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K 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. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonConnector.java

         *
         * @return A connection to a matching daemon, or null if not running.
         */
        @Nullable
        DaemonClientConnection maybeConnect(DaemonConnectDetails daemonAddress);
    
        /**
         * Attempts to connect to a daemon that matches the given constraint.
         *
         * @return A connection to a matching daemon, or null if none running.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (1)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/api/internal/DelegatingNamedDomainObjectSet.java

            return getDelegate().named(nameFilter);
        }
    
        @Override
        public NamedDomainObjectSet<T> matching(Spec<? super T> spec) {
            return getDelegate().matching(spec);
        }
    
        @Override
        public NamedDomainObjectSet<T> matching(Closure spec) {
            return getDelegate().matching(spec);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactView.java

        /**
         * Returns the collection of artifacts matching the requested attributes that are sourced from Components matching the specified filter.
         */
        ArtifactCollection getArtifacts();
    
        /**
         * Returns the collection of artifact files matching the requested attributes that are sourced from Components matching the specified filter.
         */
        FileCollection getFiles();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 29 17:24:04 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  10. 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)
Back to top