Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 513 for java (0.18 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/architecture/PackageDependencyRulesTest.kt

                .importPackagesOf(
                    org.gradle.kotlin.dsl.execution.Interpreter::class.java,
                    org.gradle.kotlin.dsl.provider.KotlinScriptClassPathProvider::class.java,
                    org.gradle.kotlin.dsl.support.EmbeddedKotlinProvider::class.java,
                    org.gradle.kotlin.dsl.accessors.ProjectSchema::class.java
                )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensionsTest.kt

                on { maybeCreate("alice", DomainObjectBase.Foo::class.java) } doReturn alice
                on { create(eq("bob"), eq(DomainObjectBase.Bar::class.java), any<Action<DomainObjectBase.Bar>>()) } doReturn bob
                on { create("john") } doReturn default
                on { create("john", DomainObjectBase.Default::class.java) } doReturn default
                onNamedWithAction("marty", DomainObjectBase.Foo::class, martyProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Rule
    import org.junit.Test
    import org.mockito.ArgumentCaptor
    import org.mockito.ArgumentMatchers.any
    import java.util.UUID
    
    
    class ConfigurationCacheBuildOperationsTest {
        @JvmField
        @Rule
        val testDirectoryProvider = TestNameTestDirectoryProvider(javaClass)
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/JavaRecordCodec.kt

    import org.gradle.internal.serialize.graph.writeNextProperty
    import java.lang.reflect.Field
    import java.lang.reflect.Modifier.isStatic
    
    
    object JavaRecordCodec : EncodingProducer, Decoding {
    
        override fun encodingForType(type: Class<*>): Encoding? =
            // need to check by name because it's only present in Java 14+
            JavaRecordEncoding.takeIf { type.superclass?.canonicalName == "java.lang.Record" }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/FlowParametersInstantiator.kt

        private
        val problemsService = services.get(Problems::class.java)
    
        private
        val inspection by lazy {
            inspectionSchemeFactory.inspectionScheme(
                listOf(
                    Input::class.java,
                    ServiceReference::class.java,
                ),
                listOf(
                    org.gradle.api.tasks.Optional::class.java
                ),
                instantiatorFactory.decorateScheme()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ComponentMetadataHandlerExtensionsTest.kt

            }
            componentMetadataHandler.all<SomeRule>()
            inOrder(componentMetadataHandler) {
                verify(componentMetadataHandler).all(SomeRule::class.java)
                verifyNoMoreInteractions()
            }
        }
    
        @Test
        fun allWithParams() {
            val configAction = Config()
            val componentMetadataHandler = mock<ComponentMetadataHandler> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/codegen/GradleApiMetadata.kt

     */
    
    package gradlebuild.kotlindsl.generator.codegen
    
    import org.gradle.api.internal.file.pattern.PatternMatcher
    import org.gradle.api.internal.file.pattern.PatternMatcherFactory
    import java.io.File
    import java.util.Properties
    import java.util.jar.JarFile
    
    
    internal
    data class GradleApiMetadata(
        val includes: List<String>,
        val excludes: List<String>,
        val parameterNamesSupplier: (String) -> List<String>?
    ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:07 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. .gitattributes

    # These files are text and should be normalized (Convert crlf => lf)
    *.bash          text eol=lf
    *.css           text diff=css
    *.htm           text diff=html
    *.html          text diff=html
    *.java          text diff=java
    *.sh            text eol=lf
    
    
    # These files are binary and should be left untouched
    # (binary is a macro for -text -diff)
    *.a             binary
    *.lib           binary
    *.icns          binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 02 12:15:16 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  9. build-logic-commons/code-quality-rules/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("java-library")
    }
    description = "Provides a custom CodeNarc rule used by the Gradle build"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    
    group = "gradlebuild"
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/ServiceRegistrationExtensions.kt

     * @see [ServiceRegistration.add]
     */
    inline fun <reified ServiceType, reified ImplementationType : ServiceType> ServiceRegistration.add() {
        add(ServiceType::class.java, ImplementationType::class.java)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top