Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for mylibs (0.24 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

                configurations {
                    dependencyScope("myLibs")
    
                    resolvable("resolveMe") {
                        extendsFrom(configurations.getByName("myLibs"))
                    }
                }
    
                dependencies {
                    add("myLibs", module(mapOf("group" to "com.squareup.okhttp3", "name" to "okhttp", "version" to "4.4.0", "configuration" to "absent")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                    implementation libs.com.companyLibs.c
    
                    implementation libs.bundles.com.company.libs.bundle
                    implementation libs.bundles.com.companylibs.bundle
                }
    
                tasks.register('checkVersions') {
                    assert libs.versions.version.libs.v1.get() == '1.0'
                    assert libs.versions.versionLibs.v2.get() == '2.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. src/crypto/internal/bigmod/nat.go

    func (x *Nat) Equal(y *Nat) choice {
    	// Eliminate bounds checks in the loop.
    	size := len(x.limbs)
    	xLimbs := x.limbs[:size]
    	yLimbs := y.limbs[:size]
    
    	equal := yes
    	for i := 0; i < size; i++ {
    		equal &= ctEq(xLimbs[i], yLimbs[i])
    	}
    	return equal
    }
    
    // IsZero returns 1 if x == 0, and 0 otherwise.
    func (x *Nat) IsZero() choice {
    	// Eliminate bounds checks in the loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/LLFirStandaloneLibrarySymbolProviderFactory.kt

                        VirtualFileFinderFactory.getInstance(project).create(scope),
                    )
                )
                val kLibs = moduleData.getLibraryKLibs()
                if (kLibs.isNotEmpty()) {
                    add(KlibBasedSymbolProvider(session, moduleDataProvider, kotlinScopeProvider, kLibs))
                }
            }
        }
    
        override fun createNativeLibrarySymbolProvider(
            session: FirSession,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Apr 15 11:10:29 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/kotlin/gradle/libs.versions.toml

    Tom Tresansky <******@****.***> 1713209293 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 542 bytes
    - Viewed (0)
  6. gradle/libs.versions.toml

    renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 1714972012 +0100
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 06 05:06:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/groovy/gradle/libs.versions.toml

    Tom Tresansky <******@****.***> 1713209293 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 542 bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

         *
         * ```
         * typealias MyString = String
         * typealias MyList<A> = List<A>
         *
         * val list: MyList<MyString> = listOf()
         * ```
         *
         * `MyList<MyString>` may be expanded to a type `List<String>` with an abbreviated type `MyList<String>`, where `String` also has the
         * abbreviated type `MyString`. The abbreviated type is not `MyList<MyString>`, although it might be rendered as such.
         *
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/runtime/sys_darwin.go

    //go:cgo_import_dynamic libc_pthread_kill pthread_kill "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_exit _exit "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_raise raise "/usr/lib/libSystem.B.dylib"
    
    //go:cgo_import_dynamic libc_open open "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_close close "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_read read "/usr/lib/libSystem.B.dylib"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. configure.py

    def set_system_libs_flag(environ_cp):
      """Set system libs flags."""
      syslibs = environ_cp.get('TF_SYSTEM_LIBS', '')
    
      if is_s390x() and 'boringssl' not in syslibs:
        syslibs = 'boringssl' + (', ' + syslibs if syslibs else '')
    
      if syslibs:
        if ',' in syslibs:
          syslibs = ','.join(sorted(syslibs.split(',')))
        else:
          syslibs = ','.join(sorted(syslibs.split()))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top