Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 2,390 for patching (0.15 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultModuleVersionSelectorTest.groovy

            def selector = newSelector(UTIL, "1.0")
            def matching = newId(UTIL, "1.0")
    
            def differentGroup = newId("xorg", "util", "1.0")
            def differentName = newId("org", "xutil", "1.0")
            def differentVersion = newId("org", "xutil", "x1.0")
    
            expect:
            selector.matchesStrictly(matching)
    
            !selector.matchesStrictly(differentGroup)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/CachingDisabledReasonCategory.java

    public enum CachingDisabledReasonCategory {
        /**
         * Reason for disabled caching is not known.
         */
        UNKNOWN,
    
        /**
         * Caching has not been enabled for the build.
         */
        BUILD_CACHE_DISABLED,
    
        /**
         * Caching has not been enabled for the task.
         */
        NOT_ENABLED_FOR_TASK,
    
        /**
         * Caching has not been enabled for the work.
         *
         * @since 8.3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/caching/internal/services/DefaultBuildCacheControllerFactory.java

    import org.gradle.caching.internal.controller.service.BuildCacheServicesConfiguration;
    import org.gradle.caching.internal.origin.OriginMetadataFactory;
    import org.gradle.caching.internal.packaging.BuildCacheEntryPacker;
    import org.gradle.caching.local.DirectoryBuildCache;
    import org.gradle.caching.local.internal.DirectoryBuildCacheService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_retract_versions.txt

    
    go list -m -e -f $FMT --versions example.com/retract/self/pseudo
    stdout '^example.com/retract/self/pseudo ""$'
    
    go list -m -e -f $FMT --versions example.com/retract/self/pseudo@latest
    stdout '^example.com/retract/self/pseudo: "module example.com/retract/self/pseudo: no matching versions for query \\"latest\\"" "latest"$'
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 05 16:02:44 UTC 2021
    - 981 bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/MutationFailureFromMatchingConfigureEachDomainObjectContainerIntegrationTest.groovy

        def "cannot execute mutation method #mutationMethod.key from matching.configureEach"() {
            buildFile << """
                testContainer.matching({ it in testContainer.type }).configureEach {
                    ${mutationMethod.value}
                }
                toBeRealized.get()
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go

    func (b *bufferedBackend) processIncomingEvents(stopCh <-chan struct{}) {
    	defer close(b.buffer)
    
    	var (
    		maxWaitChan  <-chan time.Time
    		maxWaitTimer *time.Timer
    	)
    	// Only use max wait batching if batching is enabled.
    	if b.maxBatchSize > 1 {
    		maxWaitTimer = time.NewTimer(b.maxBatchWait)
    		maxWaitChan = maxWaitTimer.C
    		defer maxWaitTimer.Stop()
    	}
    
    	for {
    		func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelGraphTest.groovy

            graph.nodeDiscovered(a)
    
            then:
            1 * listener.onDiscovered(a)
            0 * listener.onDiscovered(_)
        }
    
        def "notifies listener of new node with matching path"() {
            def listener = allAcceptingListener()
    
            def a = node("a")
            def b = node("b")
            def c = node("c")
    
            given:
            listener.getPath() >> b.path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister.java

                    List<String> matching = listedVersions.stream()
                        .filter(version -> regexPattern.matcher(currentVersionListPattern.getPath().replace(REVISION_TOKEN, version)).matches())
                        .collect(Collectors.toList());
                    if (!matching.isEmpty()) {
                        LOGGER.debug("Filtered out {} from results for overlapping match with {}", matching, otherVersionListPattern);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ivy-publish/conditional-publishing/groovy/build.gradle

        dependsOn tasks.withType(PublishToIvyRepository).matching {
            it.repository == publishing.repositories.external
        }
    }
    tasks.register('publishToInternalRepository') {
        group "publishing"
        description "Publishes all Ivy publications to Ivy repository 'internal'."
        dependsOn tasks.withType(PublishToIvyRepository).matching {
            it.repository == publishing.repositories.internal
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_split.txt

    # we should add that one particular module but not resolve import ambiguities.
    #
    # In particular, if the module that previously provided the package has a
    # matching version, but does not itself match the pattern and contains no
    # matching packages, we should not change its version. (We should *not* downgrade
    # module example.net/split to v0.1.0, despite the fact that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top