Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for containsIgnoreCase (0.32 sec)

  1. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/DefaultJvmVendorSpec.java

        private final Predicate<JvmVendor> matcher;
        private final String description;
    
        public static JvmVendorSpec matching(String match) {
            return new DefaultJvmVendorSpec(vendor -> StringUtils.containsIgnoreCase(vendor.getRawVendor(), match), "matching('" + match + "')");
        }
    
        public static JvmVendorSpec of(JvmVendor.KnownJvmVendor knownVendor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            """
    
            when:
            executeTaskViaTAPI(":other-build:nonexistent")
    
            then:
            def exception = thrown(Exception)
            exception.cause.message.containsIgnoreCase("task 'nonexistent' not found in project ':other-build'.")
        }
    
        def "gives reasonable error message when a project does not exist in the referenced included build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MultiProjectJvmApplicationInitIntegrationTest.groovy

            def allFiles = getAllFiles(targetDir)
                .findAll { it.name !in ["gradle-wrapper.jar", "gradlew", "gradlew.bat"] }
    
            allFiles.each {
                assert !it.text.containsIgnoreCase("generated by")
            }
    
            when:
            succeeds "build"
    
            then:
            assertTestPassed("app", "org.example.app.MessageUtilsTest", "testGetMessage")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

            if (shouldCheckForDeprecationWarnings()) {
                assert !rawOutput
                    .replace("[deprecated]", "IGNORE") // don't check deprecated command-line argument
                    .containsIgnoreCase("deprecated")
            }
        }
    
        ExecutionResult getResult() {
            return OutputScrapingExecutionResult.from(stdout.toString(), stderr.toString())
        }
    
        ExecutionFailure getFailure() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top