Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,011 for lib3 (0.12 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableInlineFunctionExpressionParameter.kt

    // WITH_FIR_TEST_COMPILER_PLUGIN
    // DUMP_IR
    
    // MODULE: lib
    // MODULE_KIND: LibraryBinary
    // FILE: p2/foo.kt
    package p2
    
    class A {
        fun callA() {}
    }
    
    class B {
        fun callB() {}
    }
    // MODULE: lib2(lib)
    // MODULE_KIND: LibraryBinary
    // FILE: p3/bar.kt
    package p3
    
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    import p2.A
    
    interface RowScope
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 20:08:24 UTC 2024
    - 639 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/repo/org.sample/lib/1.9/lib-1.9.jar

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/repo/org.sample/lib/1.9/lib-1.9.jar

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/NativeBinaryResolveResult.java

        public NativeBinaryResolveResult(NativeBinarySpec target, Collection<?> libs) {
            this.target = target;
            for (Object lib : libs) {
                resolutions.add(new NativeBinaryRequirementResolveResult(lib));
            }
        }
    
        public NativeBinarySpec getTarget() {
            return target;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/testdata/tsan10.go

    package main
    
    // This program hung when run under the C/C++ ThreadSanitizer.
    // TSAN defers asynchronous signals until the signaled thread calls into libc.
    // Since the Go runtime makes direct futex syscalls, Go runtime threads could
    // run for an arbitrarily long time without triggering the libc interceptors.
    // See https://golang.org/issue/18717.
    
    import (
    	"os"
    	"os/signal"
    	"syscall"
    )
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 798 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/ear/earCustomized/groovy/ear/build.gradle

        // The following dependencies will become ear libs and will
        // be placed in a dir configured via the libDirName property
        earlib group: 'log4j', name: 'log4j', version: '1.2.15', ext: 'jar'
    }
    
    tasks.named('ear') {
        appDirectory = file('src/main/app')  // use application metadata found in this folder
        libDirName 'APP-INF/lib' // put dependent libraries into APP-INF/lib inside the generated EAR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitDependentComponentsIntegrationSpec.groovy

        def prebuiltDir = buildContext.getSamplesDir().file("native-binaries/cunit/groovy/libs")
        def prebuiltPath = TextUtil.normaliseFileSeparators(prebuiltDir.path)
        def app = new CHelloWorldApp()
    
        def setup() {
            prebuiltDir.file("cunit/2.1-2/lib/${toolChain.unitTestPlatform}/${cunitLibName}").assumeExists()
            settingsFile << "rootProject.name = 'test'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/AbstractHeaderExportingDependentSourceSet.java

        private final List<Object> libs = new ArrayList<Object>();
        private String preCompiledHeader;
        private File prefixHeaderFile;
    
        @Override
        public Collection<?> getLibs() {
            return libs;
        }
    
        @Override
        public void lib(Object library) {
            if (library instanceof Iterable<?>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/build.gradle.kts

        api(project(":toolchains-jvm-shared"))
        api(project(":worker-main"))
        api(project(":workers"))
        api(project(":build-process-services"))
    
        api(libs.asm)
        api(libs.fastutil)
        api(libs.groovy)
        api(libs.guava)
        api(libs.jsr305)
        api(libs.inject)
    
        implementation(projects.concurrent)
        implementation(projects.time)
        implementation(project(":file-temp"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/lib/lib-grid.libsonnet

    local d = import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet';
    
    local panelUtil = import 'github.com/grafana/grafonnet/gen/grafonnet-v11.0.0/custom/util/panel.libsonnet';
    
    // This is forked from https://grafana.github.io/grafonnet/API/util.html#obj-grid
    // to allow automatic width to fill the grid
    {
      local root = self,
    
      local gridWidth = 24,
    
      '#makeGrid':: d.func.new(
        |||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top