Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,767 for patching (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileTreeIntegrationTest.groovy

            [
                'filter { it.path.endsWith "ok" }',
                'matching(patternSet)',
                'matching(patternSet).filter { it.file }',
                'matching(patternSet).asFileTree.filter { it.file }',
                'filter { it.path.endsWith "ok" }.asFileTree',
                'filter { it.file }.asFileTree.matching(patternSet)',
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        HISTORICAL_PERFORMANCE("Historical Performance", "Once a week: Run performance tests for multiple Gradle versions", "HistoricalPerformance"),
        EXPERIMENTAL_VFS_RETENTION("Experimental FS Watching", "On demand checks to run tests with file system watching enabled", "ExperimentalVfsRetention"),
        EXPERIMENTAL_PERFORMANCE("Experimental Performance", "Try out new performance test running", "ExperimentalPerformance");
    
        val id: String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/strings/search.go

    	// badCharSkip[b] is len(pattern).
    	//
    	// Whenever a mismatch is found with byte b in the text, we can safely
    	// shift the matching frame at least badCharSkip[b] until the next time
    	// the matching char could be in alignment.
    	badCharSkip [256]int
    
    	// goodSuffixSkip[i] defines how far we can shift the matching frame given
    	// that the suffix pattern[i+1:] matches, but the byte pattern[i] does
    	// not. There are two cases to consider:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 18:49:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiIntegrationTest.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
    - 23.1K bytes
    - Viewed (0)
Back to top