Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 374 for CPlatform (0.13 sec)

  1. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

                this.platform = platform
                this.file = scriptFile
    
                addModuleDependencies("Script " + scriptFile.name)
            }.apply(::addModule)
        }
    
        buildKtSourceModule {
            configLanguageVersionSettings?.let { this.languageVersionSettings = it }
            this.platform = platform
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. subprojects/distributions-full/build.gradle.kts

    dependencies {
        coreRuntimeOnly(platform(project(":core-platform")))
    
        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-publishing")))
        pluginsRuntimeOnly(platform(project(":distributions-jvm")))
        pluginsRuntimeOnly(platform(project(":distributions-native")))
    
        pluginsRuntimeOnly(project(":plugin-development"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/packages/KotlinStandalonePackageProvider.kt

    import org.jetbrains.kotlin.analysis.api.platform.packages.KotlinPackageProvider
    import org.jetbrains.kotlin.analysis.api.platform.packages.KotlinPackageProviderFactory
    import org.jetbrains.kotlin.analysis.api.platform.packages.KotlinPackageProviderMerger
    import org.jetbrains.kotlin.analysis.api.platform.packages.createPackageProvider
    import org.jetbrains.kotlin.analysis.api.platform.packages.KotlinPackageProviderBase
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. .github/workflows/tests.yml

    permissions:
      contents: read
    
    jobs:
      # Label of the container job
      sqlite:
        strategy:
          matrix:
            go: ['1.22', '1.21', '1.20']
            platform: [ubuntu-latest] # can not run in windows OS
        runs-on: ${{ matrix.platform }}
    
        steps:
        - name: Set up Go 1.x
          uses: actions/setup-go@v4
          with:
            go-version: ${{ matrix.go }}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProvider.kt

         *
         * This includes Kotlin packages as well as platform-specific (i.e., JVM packages) that match the [platform].
         * Generally, the result is equal to [doesKotlinOnlyPackageExist] || [doesPlatformSpecificPackageExist].
         */
        public abstract fun doesPackageExist(packageFqName: FqName, platform: TargetPlatform): Boolean
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/native/language-native/build.gradle.kts

            because("Test fixtures export the Named class")
        }
        testFixturesApi(project(":platform-base")) {
            because("Test fixtures export the Platform class")
        }
    
        testFixturesImplementation(project(":internal-integ-testing"))
        testFixturesImplementation(testFixtures(project(":platform-native")))
    
        testImplementation(project(":native"))
        testImplementation(project(":resources"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen_main.cc

    #include "tensorflow/core/lib/core/stringpiece.h"
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/file_system.h"
    #include "tensorflow/core/platform/init_main.h"
    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/platform/str_util.h"
    #include "tensorflow/core/platform/types.h"
    #include "tsl/platform/status.h"
    
    namespace tensorflow {
    namespace cc_op {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 10:53:49 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinEmptyPackageProvider.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform.packages
    
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.platform.TargetPlatform
    
    public object KotlinEmptyPackageProvider : KotlinPackageProvider() {
        override fun doesPackageExist(packageFqName: FqName, platform: TargetPlatform): Boolean = false
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. cni/pkg/ipset/nldeps_unspecified.go

    }
    
    func (m *realDeps) flush(name string) error {
    	return errors.New("not implemented on this platform")
    }
    
    func (m *realDeps) clearEntriesWithComment(name, comment string) error {
    	return errors.New("not implemented on this platform")
    }
    
    func (m *realDeps) clearEntriesWithIP(name string, ip netip.Addr) error {
    	return errors.New("not implemented on this platform")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/test/kotlin/okhttp3/testing/PlatformRuleTest.kt

     * limitations under the License.
     */
    package okhttp3.testing
    
    import okhttp3.internal.platform.Platform
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    /**
     * Validates which environment is used by the IDE.
     */
    class PlatformRuleTest {
      @RegisterExtension @JvmField
      val platform = PlatformRule()
    
      @Test
      fun testMode() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top