Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Inaccessible (0.27 sec)

  1. guava/src/com/google/common/hash/LittleEndianByteArray.java

        void putLongLittleEndian(byte[] array, int offset, long value);
      }
    
      /**
       * The only reference to Unsafe is in this nested class. We set things up so that if
       * Unsafe.theUnsafe is inaccessible, the attempt to load the nested class fails, and the outer
       * class's static initializer can fall back on a non-Unsafe version.
       */
      @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/LittleEndianByteArray.java

        void putLongLittleEndian(byte[] array, int offset, long value);
      }
    
      /**
       * The only reference to Unsafe is in this nested class. We set things up so that if
       * Unsafe.theUnsafe is inaccessible, the attempt to load the nested class fails, and the outer
       * class's static initializer can fall back on a non-Unsafe version.
       */
      @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanSchema.kt

        "actions",
        "enabled",
        "timeout",
        "onlyIfSpec",
        "logger",
    )
    
    
    internal
    fun AccessibleObject.makeAccessible() {
        @Suppress("deprecation")
        if (!isAccessible) isAccessible = true
    }
    
    
    private
    object Workarounds {
    
        private
        val ignoredBeanFields = arrayOf(
            // TODO:configuration-cache remove once fixed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractBuiltInTypeTest.kt

                val typeMethod = builtinTypes::class.java.methods.singleOrNull {
                    it.name == "get" + builtInTypeName.capitalizeAsciiOnly()
                }!!
                typeMethod.isAccessible = true
                return typeMethod.invoke(builtinTypes) as KaType
            }
        }
    
        object Directives : SimpleDirectivesContainer() {
            val BUILTIN_TYPE_NAME by stringDirective("name of built in type")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/MethodCache.kt

        allMethods().firstAccessibleMatchingMethodOrNull(predicate)
    
    
    internal
    fun Iterable<Method>.firstAccessibleMatchingMethodOrNull(predicate: Method.() -> Boolean): Method? =
        find(predicate)?.apply { isAccessible = true }
    
    
    internal
    fun Class<*>.firstMatchingMethodOrNull(predicate: Method.() -> Boolean): Method? =
        allMethods().find(predicate)
    
    
    internal
    fun Class<*>.allMethods() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. cmd/logging.go

    type KMSLogger struct{}
    
    // LogOnceIf is the implementation of LogOnceIf, accessible using the Logger interface
    func (l KMSLogger) LogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
    	logger.LogOnceIf(ctx, "kms", err, id, errKind...)
    }
    
    // LogIf is the implementation of LogIf, accessible using the Logger interface
    func (l KMSLogger) LogIf(ctx context.Context, err error, errKind ...interface{}) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/JavaRecordCodec.kt

    object JavaRecordEncoding : Encoding {
        override suspend fun WriteContext.encode(value: Any) {
            val clazz = value::class.java
            writeClass(clazz)
            for (field in clazz.relevantFields) {
                field.isAccessible = true
                val fieldName = field.name
                val fieldValue = field.get(value)
                unsupportedFieldTypeFor(field)?.let {
                    reportUnsupportedFieldType(it, "serialize", fieldName, fieldValue)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

    import kotlin.reflect.KClass
    import kotlin.reflect.KFunction
    import kotlin.reflect.KProperty
    import kotlin.reflect.KVisibility
    import kotlin.reflect.full.*
    import kotlin.reflect.jvm.isAccessible
    
    public class DebugSymbolRenderer(
        public val renderExtra: Boolean = false,
        public val renderTypeByProperties: Boolean = false,
        public val renderExpandedTypes: Boolean = false,
    ) {
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            dynamicPropertyExpression << [
                'gradleProp',
                'ext.gradleProp'
            ]
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19793")
        def "gradle properties must be accessible from task in #build"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            build.setup(this)
    
            when:
            configurationCacheRun build.task()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. docs/en/docs/fastapi-cli.md

    It will have **auto-reload disabled** by default.
    
    It will listen on the IP address `0.0.0.0`, which means all the available IP addresses, this way it will be publicly accessible to anyone that can communicate with the machine. This is how you would normally run it in production, for example, in a container.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top