Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 879 for StartsWith (0.15 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4CategoriesNotSupportedIntegrationTest.groovy

    package org.gradle.testing.junit.junit4
    
    import org.gradle.integtests.fixtures.AbstractSampleIntegrationTest
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    
    import static org.hamcrest.CoreMatchers.startsWith
    
    class JUnit4CategoriesNotSupportedIntegrationTest extends AbstractSampleIntegrationTest {
    
        def "test task fails if categories not supported"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r18/BuildActionCrossVersionSpec.groovy

            when:
            withConnection {
                it.action(new ActionShouldNotBeCalled()).run()
            }
    
            then:
            BuildException e = thrown()
            e.message.startsWith('Could not run build action using')
            e.cause.message.contains('A problem occurred evaluating root project')
    
            and:
            failure.assertHasDescription('A problem occurred evaluating root project')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizer.groovy

            executionMetadata.tempSampleProjectDir.name.startsWith('building-scala')
                ? normalizeScalaOutput(output)
                : output
        }
    
        private String normalizeScalaOutput(String output) {
            PATTERN.matcher(output)
                .replaceAll("")
                .with {
                    // remove starting empty line
                    it.startsWith('\n')
                        ? it.substring(1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleVsMavenPerformanceTestRunner.groovy

                }
            }
            if (!builder.displayName.startsWith("Maven ")) {
                throw new IllegalArgumentException("Maven invocation display name must start with 'Maven '")
            }
        }
    
        @Override
        protected void finalizeGradleSpec(GradleBuildExperimentSpec.GradleBuilder builder) {
            super.finalizeGradleSpec(builder)
            if (!builder.displayName.startsWith("Gradle ")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

                }
                while ((urlQueue = urlQueueService.poll(sessionId2)) != null) {
                    assertTrue(urlQueue.getUrl() + "=>" + url2, urlQueue.getUrl().startsWith(url2));
                }
    
                dataService.iterate(sessionId1, accessResult -> assertTrue(accessResult.getUrl().startsWith(url1)));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxy.java

            return methodName.startsWith(prefix) && methodName.length() > prefix.length() && Character.isUpperCase(methodName.charAt(prefix.length()));
        }
    
        private static String getPropertyName(String methodName) {
            if (methodName.startsWith("get")) {
                return getPropertyName(methodName, "get");
            } else if (methodName.startsWith("is")) {
                return getPropertyName(methodName, "is");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:27:26 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/DependencyClassPathNotationConverter.java

            Iterator<File> iterator = apiClasspath.iterator();
            while (iterator.hasNext()) {
                String name = iterator.next().getName();
                if (name.startsWith("kotlin-") || name.startsWith("gradle-kotlin-")) {
                    iterator.remove();
                }
            }
        }
    
        private List<File> kotlinImplFrom(Collection<File> classPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:30:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. docs/en/docs/js/custom.js

                        } else if (line.startsWith(promptLiteralStart)) {
                            saveBuffer();
                            const value = line.replace(promptLiteralStart, "").trimEnd();
                            useLines.push({
                                type: "input",
                                value: value
                            });
                        } else if (line.startsWith("// ")) {
                            saveBuffer();
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 08 17:50:56 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

                    assertTrue(urlQueue.getUrl().startsWith(url1));
                }
                while ((urlQueue = urlQueueService.poll(sessionId2)) != null) {
                    assertTrue(urlQueue.getUrl().startsWith(url2));
                }
    
                dataService.iterate(sessionId1, accessResult -> {
                    assertTrue(accessResult.getUrl().startsWith(url1));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

                            || descriptor.displayName.startsWith('Execute unit of work')
                            || descriptor.displayName.startsWith('Execute transform')
                            || descriptor.displayName.startsWith('Executing ')
                            || descriptor.displayName.startsWith('Execute container callback action')
                            || descriptor.displayName.startsWith('Resolving ')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top