Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 793 for patching (0.11 sec)

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

            given:
            registry.create().create("aar")
    
            expect:
            registry.mapAttributesFor(attrs, []) == attrs
        }
    
        def "adds artifactType attribute but does not apply any mapping when no matching artifact type"() {
            def attrs = ImmutableAttributes.EMPTY
            def attrsPlusFormat = concat(attrs, ["artifactType": "jar"])
            def artifact = Stub(ComponentArtifactMetadata)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:43:17 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

    import org.gradle.caching.internal.controller.operations.PackOperationDetails;
    import org.gradle.caching.internal.controller.operations.PackOperationResult;
    import org.gradle.caching.internal.controller.operations.UnpackOperationDetails;
    import org.gradle.caching.internal.controller.operations.UnpackOperationResult;
    import org.gradle.caching.internal.controller.service.BuildCacheLoadResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe_test.go

    			args: strings.Split("service productpage", " "),
    			expectedOutput: `Service: productpage
    DestinationRule: productpage for "productpage"
       WARNING POD DOES NOT MATCH ANY SUBSETS.  (Non matching subsets v1)
       Matching subsets: 
          (Non-matching subsets v1)
       No Traffic Policy
    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
       Route to host "productpage2" with weight 20%
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    [[variant_attributes]]
    = Working with Variant Attributes
    
    As explained in the section on <<variant_model.adoc#sec:variant-aware-matching,variant aware matching>>, attributes give semantics to variants and are used by Gradle's dependency management engine to select the best matching variant.
    
    As a user of Gradle, attributes are often hidden as implementation details.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

    Required by:
        org:a:1.2 > org:b:5 > org:c:1.0''')
            onePath.stackTrace == exception.stackTrace
        }
    
        def "formats message for selector and locations when versions are rejected by attribute matching"() {
            def versions = [
                    rejectedByAttributes('1.1', [color: ['red', 'blue', false]]),
                    rejectedByAttributes('1.0', [color: ['red', 'green', false]]),
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            """
    
            when: "fetching without Isolated Projects"
            def originalIdeaModel = fetchModel(IdeaProject)
    
            then:
            fixture.assertNoConfigurationCache()
            originalIdeaModel.modules.size() == 3
            originalIdeaModel.modules.every { it.children.isEmpty() } // IdeaModules are always flattened
    
            when: "fetching with Isolated Projects"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystemTest.groovy

            locationsUpdatedByCurrentBuild,
            watchableFileSystemDetector,
            fileChangeListeners
        )
    
        def "invalidates the virtual file system before and after the build when watching is disabled"() {
            when:
            watchingVirtualFileSystem.updateRootUnderLock { root -> nonEmptySnapshotHierarchy }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

    import org.gradle.kotlin.dsl.caching.fixtures.cachedProjectScript
    import org.gradle.kotlin.dsl.caching.fixtures.cachedSettingsFile
    import org.gradle.kotlin.dsl.caching.fixtures.cachedSettingsScript
    import org.gradle.kotlin.dsl.caching.fixtures.classLoadingCache
    import org.gradle.kotlin.dsl.caching.fixtures.compilationCache
    import org.gradle.kotlin.dsl.caching.fixtures.compilationTrace
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataSupplierRuleExecutorTest.groovy

            'regular module caching'                           | false    | false       | false   | TestSupplier
            'regular module caching (--refresh-dependencies)'  | false    | true        | false   | TestSupplier
            'changing module caching'                          | true     | false       | false   | TestSupplier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top