Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,788 for patching (0.17 sec)

  1. 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)
  2. 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 (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultComponentArtifactsResult.java

            Set<ArtifactResult> matching = new LinkedHashSet<>();
            for (ArtifactResult artifactResult : artifactResults) {
                if (type.isAssignableFrom(artifactResult.getType())) {
                    matching.add(artifactResult);
                }
            }
            return matching;
        }
    
        public void addArtifact(ArtifactResult artifact) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestNGExecutionResult.groovy

            def testClasses = findTestClasses()
            def matching = testClasses.find { it.key.startsWith(testClass) }
            if (!matching) {
                throw new AssertionError("Could not find test class matching ${testClass}. Found ${testClasses.keySet()}")
            }
            matching
        }
    
        private def findTestClasses() {
            Map testClasses = [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultRealizableTaskCollection.java

        }
    
        @Override
        public TaskCollection<T> matching(Spec<? super T> spec) {
            return realizable(type, getDelegate().matching(spec));
        }
    
        @Override
        public TaskCollection<T> matching(Closure closure) {
            return realizable(type, getDelegate().matching(closure));
        }
    
        @Override
        public <S extends T> TaskCollection<S> withType(Class<S> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top