Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,437 for rfind (0.06 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyHttpRepoResolveIntegrationTest.groovy

            failure.assertHasCause('Could not find :name1:1.0.')
            failure.assertHasCause('Could not find any matches for :name2:[1.0, 2.0] as no versions of :name2 are available.')
            failure.assertHasCause('Could not find :name3:1.0-SNAPSHOT.')
            failure.assertHasCause('Could not find group1::1.0.')
            failure.assertHasCause('Could not find any matches for group2::[1.0, 2.0] as no versions of group2: are available.')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

            ipr.bytecodeTargetLevel.children().size() == 3
            ipr.bytecodeTargetLevel.module.find { it.@name == "root" }.@target == "1.4"
            ipr.bytecodeTargetLevel.module.find { it.@name == "child1" }.@target == "1.6"
            ipr.bytecodeTargetLevel.module.find { it.@name == "child2" }.@target == "1.5"
            !ipr.bytecodeTargetLevel.module.find { it.@name == "child3" }
    
            when:
            succeeds "idea"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r60/TestOutputCrossVersionSpec.groovy

            def events = getOutputEvents()
    
            then:
            events.find { TestOutputEvent event -> event.descriptor.message == "out1" && event.descriptor.destination == Destination.StdOut }
            events.find { TestOutputEvent event -> event.descriptor.message == "err1" && event.descriptor.destination == Destination.StdErr }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/report/HtmlTestResultsFixture.groovy

            assert content.select("a[href=${target}.html]").find { it.text() == display }
        }
    
        void assertHasFailedTest(String target, String testName) {
            def tab = findTab('Failed tests')
            assert tab != null
            assert tab.select("a[href=${target}.html#$testName]").find { it.text() == testName }
        }
    
        void assertHasIgnoredTest(String target, String testName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. .github/DISCUSSION_TEMPLATE/questions.yml

              required: true
            - label: I used the GitHub search to find a similar question and didn't find it.
              required: true
            - label: I searched the FastAPI documentation, with the integrated search.
              required: true
            - label: I already searched in Google "How to X in FastAPI" and didn't find any information.
              required: true
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathFixture.groovy

            }
    
            void assertHasAttribute(String key, String value) {
                assert entry.attributes.attribute.find { it.@name == key && it.@value == value }
            }
    
            void assertHasNoAttribute(String key, String value) {
                assert !entry.attributes.attribute.find { it.@name == key && it.@value == value }
            }
        }
    
        class EclipseProjectDependency extends EclipseClasspathEntry {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

            expect:
            exception.message == 'Could not find org:a:1.2.'
        }
    
        def "formats message to include id and locations"() {
            def exception = new ModuleVersionNotFoundException(newId("org", "a", "1.2"), ["http://somewhere", "file:/somewhere"])
    
            expect:
            exception.message == toPlatformLineSeparators("""Could not find org:a:1.2.
    Searched in the following locations:
      - http://somewhere
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseScopeAttributeIntegrationTest.groovy

            EclipseClasspathFixture classpath = classpath('.')
    
            def container = classpath.entries.find { it.@kind == 'con' }
            container.attributes.attribute.size() == 2
            container.attributes.attribute.find { it.@name == 'add-exports' && it.@value == 'java.base/jdk.internal.access=ALL-UNNAMED' }
            container.attributes.attribute.find { it.@name == 'add-exports' && it.@value == 'java.base/jdk.internal.loader=ALL-UNNAMED' }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 13:19:47 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiIdeaModelCrossVersionSpec.groovy

            when:
            IdeaProject project = withConnection { connection -> connection.getModel(IdeaProject.class) }
            def module = project.children.find { it.name == 'impl' }
    
            then:
            def libs = module.dependencies
    
            IdeaModuleDependency mod = libs.find {it instanceof IdeaModuleDependency}
            mod.targetModuleName == 'api'
        }
    
        def "can query dependencies for model produced from BuildAction"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

            child2.projectDependencies.isEmpty()
            child2.classpath.collect { it.file.name }.sort() == ['child1-1.0-tests.jar', 'child1-1.0.jar']
            // TODO: verify test-source usage after https://github.com/gradle/gradle/pull/9484 is merged
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top