Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for notice (0.86 sec)

  1. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

    fun onlyNativeSubprojectsForIntelMacs(
        testCoverage: TestCoverage,
        subprojectName: String
    ): Boolean {
        return if (testCoverage.os == Os.MACOS && testCoverage.arch == Arch.AMD64) {
            subprojectName.contains("native") ||
                // Include precondition-tester here so we understand that tests do run on macOS intel as well
                subprojectName in listOf("file-watching", "snapshots", "workers", "logging", "precondition-tester")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

            val specificContentId = if (descriptor.language === Language.CPP || descriptor.language === Language.SWIFT) {
                "native-" + descriptor.componentType.toString()
            } else {
                descriptor.componentType.toString()
            }
    
            val comments = descriptor.generateWithExternalComments(groovyDslSettings)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        ]
        subProjectTemplates = ['native-source', 'native-component', 'gradle-properties']
        daemonMemory = '256m'
    }
    
    performanceTest.registerTestProject("bigNative", NativeProjectGeneratorTask) {
        projects = 1
        sourceFiles = 500
        templateArgs = [
            moduleCount: 1,
            functionCount: 50
        ]
        subProjectTemplates = ['native-source', 'native-component', 'gradle-properties']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinForwardDeclarationProviderFactory.kt

     * implementation.
     */
    public abstract class KotlinForwardDeclarationProviderFactory : KotlinOptionalPlatformComponent {
        /**
         * Create a Kotlin/Native declaration provider for [ktModule].
         *
         * Generally, only Kotlin/Native KLIB libraries can declare forward declarations.
         * For other types of [KtModule]s the provider normally shouldn't be created.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. ReadMe.md

    **OPTIONAL:** Some artifacts, mainly Maven plugin ones, are built separately with Maven.
    Refer to [libraries/ReadMe.md](libraries/ReadMe.md) for details.
    
    To build Kotlin/Native, see
    [kotlin-native/README.md](kotlin-native/README.md#building-from-source).
    
    ## <a name="working-in-idea"></a> Working with the project in IntelliJ IDEA
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. .github/CODEOWNERS

    # Software platform
    platforms/software/                         @gradle/bt-jvm
    
    # Extensibility
    platforms/extensibility/        @gradle/bt-extensibility-maintainers
    
    # Native
    platforms/native/                   @gradle/bt-native-maintainers
    
    # gitStream files
    .cm/                                @tresat
    .github/workflows/gitstream.yml     @tresat
    
    # IDE Experience team
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. src/mdo/reader-stax.vm

    #*
      Licensed to the Apache Software Foundation (ASF) under one
      or more contributor license agreements.  See the NOTICE file
      distributed with this work for additional information
      regarding copyright ownership.  The ASF licenses this file
      to you under the Apache License, Version 2.0 (the
      "License"); you may not use this file except in compliance
      with the License.  You may obtain a copy of the License at
    
      http://www.apache.org/licenses/LICENSE-2.0
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/resteasy-reactive/rest-client-reactive/runtime/pom.xml
    	quarkus/test-framework/junit5/pom.xml
    quarkus/integration-tests/picocli-native/pom.xml
    	quarkus/extensions/picocli/runtime/pom.xml
    	quarkus/test-framework/junit5/pom.xml
    quarkus/integration-tests/grpc-exceptions/pom.xml
    	quarkus/extensions/resteasy-reactive/quarkus-resteasy-reactive/runtime/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-66371`](https://youtrack.jetbrains.com/issue/KT-66371) Native: nullptr access during concurrent weak processing in CMS GC
    - [`KT-64313`](https://youtrack.jetbrains.com/issue/KT-64313) Kotlin Native: Seg Fault during Garbage Collection on 1.9.21 (observed on iOS)
    - [`KT-61093`](https://youtrack.jetbrains.com/issue/KT-61093) Kotlin/Native: enable concurrent weak processing by default
    
    ### Native. Stdlib
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

    /**
     * A marker interface for a provider that can be composed, i.e. multiple instances of the same provider can be composed into a single
     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
     * is usually a merge function which allows to create a single provider from a list of providers. Mergers of composable providers may
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top