Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,074 for patching (0.13 sec)

  1. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/EnableFileSystemWatchingIntegrationTest.groovy

        private static final String ENABLED_MESSAGE = "Watching the file system is configured to be enabled"
        private static final String ENABLED_IF_AVAILABLE_MESSAGE = "Watching the file system is configured to be enabled if available"
        private static final String DISABLED_MESSAGE = "Watching the file system is configured to be disabled"
    
        private static final String ACTIVE_MESSAGE = "File system watching is active"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorDependencyExcludeResolveIntegrationTest.groovy

            where:
            name                    | excludeAttributes
            'non-matching module'   | [module: 'other']
            'non-matching artifact' | [name: 'other']
            'matching all modules'  | [module: '*']
            'matching module'       | [module: 'd']
            'matching artifact'     | [name: 'd']
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunnerTest.groovy

            new DefaultInternalOptions([:]))
    
        def setup() {
            _ * startParameter.getSystemPropertiesArgs() >> [:]
            _ * buildAction.startParameter >> startParameter
        }
    
        def "watching virtual file system is informed about watching the file system being #watchMode.description (VFS logging: #vfsLogging, watch logging: #watchLogging)"() {
            _ * startParameter.watchFileSystemMode >> watchMode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/repo.go

    	//
    	// Versions returns a non-nil error only if there was a problem
    	// fetching the list of versions: it may return an empty list
    	// along with a nil error if the list of matching versions
    	// is known to be empty.
    	//
    	// If the underlying repository does not exist,
    	// Versions returns an error matching errors.Is(_, os.NotExist).
    	Versions(ctx context.Context, prefix string) (*Versions, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/toolchain-filters/kotlin/build.gradle.kts

    } else if (testToolchain == "matchingVendor") {
    // tag::toolchain-matching-vendor[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.matching("customString")
        }
    }
    // end::toolchain-matching-vendor[]
    
    } else if (testToolchain == "matchingImplementation") {
    // tag::toolchain-matching-implementation[]
    java {
        toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1000 bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerFileSystemWatchingIntegrationTest.groovy

            buildFile << """
                plugins {
                    id('java')
                }
            """
            assumeTrue("File system watching is enabled by default", isCompatibleVersion("7.0"))
        }
    
        @NoDebug
        @Requires(UnitTestPreconditions.Windows)
        def "disables file system watching on Windows"() {
            when:
            def result = runAssemble()
            then:
            assertFileSystemWatchingDisabled(result)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/JavaToolchainService.java

        /**
         * Obtain a {@link JavaCompiler} matching the {@link JavaToolchainSpec}, as configured by the provided action.
         *
         * @param config The configuration of the {@code JavaToolchainSpec}
         * @return A {@code Provider<JavaCompiler>}
         */
        Provider<JavaCompiler> compilerFor(Action<? super JavaToolchainSpec> config);
    
        /**
         * Obtain a {@link JavaCompiler} matching the {@link JavaToolchainSpec}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

                   .assertHasCause("Cannot find a Java installation on your machine matching this tasks requirements: {languageVersion=99, vendor=matching('exotic'), implementation=vendor-specific} for")
                    .assertHasCause("No matching toolchain could be found in the locally installed toolchains or the configured toolchain download repositories. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultDomainObjectCollectionTest.groovy

            expect:
            toList(container.matching(spec)) == ["a", "c"]
        }
    
        def getAllMatchingDomainObjectsReturnsEmptySetWhenNoMatches() {
            def spec = new Spec<CharSequence>() {
                boolean isSatisfiedBy(CharSequence element) {
                    return false
                }
            }
    
            container.add("a")
    
            expect:
            container.matching(spec).empty
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 23:50:58 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiKotlinIntegrationTest.groovy

                   .assertHasCause("Cannot find a Java installation on your machine matching this tasks requirements: {languageVersion=99, vendor=matching('exotic'), implementation=vendor-specific} for")
                   .assertHasCause("No matching toolchain could be found in the locally installed toolchains or the configured toolchain download repositories. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top