Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for load (0.16 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10JvmTypeMapper.kt

    import org.jetbrains.kotlin.analysis.api.descriptors.utils.KtFe10JvmTypeMapperContext
    import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
    import org.jetbrains.kotlin.analysis.api.types.KtType
    import org.jetbrains.kotlin.load.kotlin.TypeMappingMode
    import org.jetbrains.org.objectweb.asm.Type
    
    internal class KtFe10JvmTypeMapper(
        override val analysisSession: KtFe10AnalysisSession
    ) : KtJvmTypeMapper(), Fe10KtAnalysisSessionComponent {
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Mar 10 11:03:45 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/WebPlatformToAsciiData.kt

    @Serializable
    class WebPlatformToAsciiData {
      var input: String? = null
      var output: String? = null
      var comment: String? = null
    
      override fun toString() = "input=$input output=$output"
    
      companion object {
        fun load(): List<WebPlatformToAsciiData> {
          val path = okHttpRoot / "okhttp/src/test/resources/web-platform-test-toascii.json"
          return SYSTEM_FILE_SYSTEM.read(path) {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-egress/NOTES.txt

    - the new chart uses the default namespace service account, and doesn't require
    additional RBAC permissions.
    
    - simplified label structure. Label change is not supported on upgrade.
    
    - for 'internal load balancer' you should deploy a separate gateway, in a different
    namespace.
    
    All ingress gateway have a "app:ingressgateway" label, used to identify it as an
    ingress, and an "istio: ingressgateway$SUFFIX" label of Gateway selection.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Apr 15 21:29:06 GMT 2020
    - 1.5K bytes
    - Viewed (0)
  4. build-logic/build.gradle.kts

                    "Use the same org.gradle.jvmargs for both builds.")
            }
        }
    }
    
    fun readProperties(propertiesFile: File) = java.util.Properties().apply {
        propertiesFile.inputStream().use { fis -> load(fis) }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Jan 24 02:52:56 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10PsiTypeProvider.kt

    import org.jetbrains.kotlin.asJava.classes.annotateByKotlinType
    import org.jetbrains.kotlin.codegen.signature.BothSignatureWriter
    import org.jetbrains.kotlin.load.kotlin.TypeMappingMode
    import org.jetbrains.kotlin.load.kotlin.getOptimalModeForReturnType
    import org.jetbrains.kotlin.load.kotlin.getOptimalModeForValueParameter
    import org.jetbrains.kotlin.name.SpecialNames
    import org.jetbrains.kotlin.platform.has
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Mar 28 16:10:07 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeInfoProvider.kt

    import org.jetbrains.kotlin.builtins.KotlinBuiltIns
    import org.jetbrains.kotlin.builtins.functions.FunctionTypeKind
    import org.jetbrains.kotlin.builtins.getFunctionTypeKind
    import org.jetbrains.kotlin.load.java.sam.JavaSingleAbstractMethodUtils
    import org.jetbrains.kotlin.name.SpecialNames
    import org.jetbrains.kotlin.types.DefinitelyNotNullType
    import org.jetbrains.kotlin.types.KotlinType
    import org.jetbrains.kotlin.types.TypeUtils
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Feb 02 08:24:52 GMT 2023
    - 3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SamResolver.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.descriptors.ClassDescriptor
    import org.jetbrains.kotlin.load.java.sam.JvmSamConversionOracle
    import org.jetbrains.kotlin.resolve.sam.createSamConstructorFunction
    import org.jetbrains.kotlin.resolve.sam.getSingleAbstractMethodOrNull
    
    internal class KtFe10SamResolver(
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Wed Jun 22 07:31:36 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/events.md

    You could load it at the top level of the module/file, but that would also mean that it would **load the model** even if you are just running a simple automated test, then that test would be **slow** because it would have to wait for the model to load before being able to run an independent part of the code.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/gradients/BUILD

    load(
        "//tensorflow:tensorflow.bzl",
        "if_libtpu",
        "tf_cuda_cc_test",
    )
    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    load(
        "//tensorflow/core/platform:build_config_root.bzl",
        "tf_cuda_tests_tags",
    )
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    # Library of gradient functions.
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    Plain Text
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Mon Apr 01 20:39:44 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/platform/android/StandardAndroidSocketAdapter.kt

          } catch (e: Exception) {
            AndroidLog.androidLog(
              loggerName = OkHttpClient::class.java.name,
              logLevel = Platform.WARN,
              message = "unable to load android socket classes",
              t = e,
            )
            null
          }
        }
      }
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.7K bytes
    - Viewed (0)
Back to top