Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,766 for somme (0.05 sec)

  1. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/DefaultBuildControllerTest.groovy

            def failure = new UnknownModelException("not found")
    
            given:
            _ * workerThreadRegistry.workerThread >> true
            1 * modelController.locateBuilderForDefaultTarget('some.model', false) >> modelScope
            1 * modelScope.getModel("some.model", null) >> { throw failure }
    
            when:
            controller.getModel(null, modelId)
    
            then:
            InternalUnsupportedModelException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:30 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelReferenceTest.groovy

            reference.untyped
            reference.state == ModelNode.State.GraphClosed
        }
    
        def "path only"() {
            expect:
            def reference = ModelReference.of("some.path")
            reference.scope == null
            reference.path == ModelPath.path("some.path")
            reference.type == ModelType.of(Object)
            reference.untyped
            reference.state == ModelNode.State.GraphClosed
        }
    
        def "type only"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaLambdaAccessorsIntegrationTest.kt

                val casted = closureExtension as groovy.lang.Closure<*>
                println(casted.call("some"))
                """
            )
    
            build("help").apply {
                assertOutputContains("closureExtension: java.lang.Object")
                assertOutputContains("SOME")
            }
        }
    
        @Test
        fun `accessors to __untyped__ kotlin lambda extensions are typed Any`() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:43 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FilePathUtilTest.groovy

            where:
            commonPrefix | firstPostFix | secondPostFix
            "some"      | "path"            | "other/some"
            "some"      | "pather/one"      | "path/two/three"
            "some/path" | "one"             | "two/three"
            ""          | "one"             | "two/three"
            ""          | "oner"            | "one"
            "some/path" | "with/one/ending" | "without/two/different"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/CacheLayoutTest.groovy

            cacheLayout.name == 'modules'
            cacheLayout.key == 'modules-2'
            cacheLayout.version == CacheVersion.of(2)
            cacheLayout.version.toString() == '2'
            cacheLayout.getPath(new File('some/dir')) == new File('some/dir/modules-2')
            !cacheLayout.versionMapping.getVersionUsedBy(GradleVersion.version("1.8")).present
            cacheLayout.versionMapping.getVersionUsedBy(GradleVersion.version("1.9-rc-1")).get() == CacheVersion.of(1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/FileUtilsTest.groovy

            withExtension("/some/path/to/foo", ".bar") == "/some/path/to/foo.bar"
            withExtension("foo.baz", ".bar") == "foo.bar"
            withExtension("/some/path/to/foo.baz", ".bar") == "/some/path/to/foo.bar"
            withExtension("\\some\\path\\to\\foo.baz", ".bar") == "\\some\\path\\to\\foo.bar"
            withExtension("/some/path/to/foo.boo.baz", ".bar") == "/some/path/to/foo.boo.bar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultIvyExtraInfoTest.groovy

        }
    
        def "can get by name and namespace" () {
            given:
            def extraInfo = new DefaultIvyExtraInfo([
                    (new NamespaceId('http://my.extra.info', 'foo')): 'fooValue',
                    (new NamespaceId('http://some.extra.info', 'foo')): 'anotherValue'
            ])
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. testing/performance/src/templates/with-verbose-testng/Test.java

                System.out.println("Some test output from ${testClassName}.testOne - " + i);
                System.err.println("Some test error  from ${testClassName}.testOne - " + i);
            }
            assertEquals(production.getProperty(), "value");
        }
    
        @Test
        public void testTwo() {
            for (int i = 0; i < 1000; i++) {
                System.out.println("Some test output from ${testClassName}.testTwo - " + i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InPlaceClasspathBuilderTest.groovy

                it.put("a.class", "bytes".bytes)
                it.put("dir/b.class", "bytes".bytes)
                it.put("some/dir/c.class", "bytes".bytes)
            }
    
            then:
            def zip = new ZipTestFixture(file)
            zip.hasDescendants("a.class", "dir/b.class", "some/dir/c.class")
            zip.hasDirs("dir", "some", "some/dir")
        }
    
        def "overrides previously constructed jar"() {
            def file = tmpDir.file("thing.zip")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/GcsConnectionPropertiesTest.groovy

            where:
            endpoint << ['http://some', 'httP://some', 'httpS://some', 'HTTpS://some']
        }
    
        def "should default invalid disableAuthentication parameter"() {
            expect:
            new GcsConnectionProperties("http://some", null, value).requiresAuthentication()
            then:
            where:
            value << ['foo', 'true-ish', 'false-y', '1']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top