Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 176 for inaccessible (0.33 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

        InaccessibilityReason.TypeErasure(type)
    
    
    internal
    fun accessible(type: SchemaType): TypeAccessibility =
        TypeAccessibility.Accessible(type)
    
    
    internal
    fun inaccessible(type: SchemaType, vararg reasons: InaccessibilityReason) =
        inaccessible(type, reasons.toList())
    
    
    internal
    fun inaccessible(type: SchemaType, reasons: List<InaccessibilityReason>): TypeAccessibility =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MultimapBuilder.java

          @Override
          <K extends K0, V extends @Nullable Object> Map<K, Collection<V>> createMap() {
            // K must actually be K0, since enums are effectively final
            // (their subclasses are inaccessible)
            return (Map<K, Collection<V>>) new EnumMap<K0, Collection<V>>(keyClass);
          }
        };
      }
    
      private static final class ArrayListSupplier<V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MultimapBuilder.java

          @Override
          <K extends K0, V extends @Nullable Object> Map<K, Collection<V>> createMap() {
            // K must actually be K0, since enums are effectively final
            // (their subclasses are inaccessible)
            return (Map<K, Collection<V>>) new EnumMap<K0, Collection<V>>(keyClass);
          }
        };
      }
    
      private static final class ArrayListSupplier<V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

      var recordFrames = false
      var recordSslDebug = false
    
      private val sslExcludeFilter =
        Regex(
          buildString {
            append("^(?:")
            append(
              listOf(
                "Inaccessible trust store",
                "trustStore is",
                "Reload the trust store",
                "Reload trust certs",
                "Reloaded",
                "adding as trusted certificates",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

     *     A {
     *         val x: Int = 5
     *     },
     *
     *     // `B` has no initializer.
     *     B
     * }
     * ```
     *
     * The initializer of `A` declares a member `x: Int`, which is inaccessible outside the initializer. Still, the corresponding
     * [KaEnumEntryInitializerSymbol] can be used to get a declared member scope that contains `x`.
     */
    public interface KaEnumEntryInitializerSymbol : KaSymbolWithMembers
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. plugin/pkg/admission/gc/gc_admission.go

    	if len(newBlockingRefs) == 0 {
    		return nil
    	}
    
    	// There can be a case where a restMapper tries to hit discovery endpoints and times out if the network is inaccessible.
    	// This can prevent creating the pod to run the network to be able to do discovery and it appears as a timeout, not a rejection.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/Invokable.java

          return true;
        } catch (Exception e) { // sneaky checked exception
          return false;
        }
      }
    
      /** See {@link java.lang.reflect.AccessibleObject#isAccessible()}. */
      public final boolean isAccessible() {
        return accessibleObject.isAccessible();
      }
    
      @Override
      public final String getName() {
        return member.getName();
      }
    
      @Override
      public final int getModifiers() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/reflect/Invokable.java

          return true;
        } catch (Exception e) { // sneaky checked exception
          return false;
        }
      }
    
      /** See {@link java.lang.reflect.AccessibleObject#isAccessible()}. */
      public final boolean isAccessible() {
        return accessibleObject.isAccessible();
      }
    
      @Override
      public final String getName() {
        return member.getName();
      }
    
      @Override
      public final int getModifiers() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorFragments.kt

        )
        if (returnType is TypeAccessibility.Accessible)
            CHECKCAST(jvmReturnType)
    }
    
    
    private
    fun accessibleTypesFor(typeAccessibility: TypeAccessibility): Pair<KmType, InternalName> = when (typeAccessibility) {
        is TypeAccessibility.Accessible -> typeAccessibility.run { type.kmType to internalName() }
        is TypeAccessibility.Inaccessible -> KotlinType.any to InternalNameOf.javaLangObject
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                    extension{} java.lang.Object
                    """
                )
            )
    
            // Making the Extension type accessible
            // should cause the accessors to be regenerated
            // with the now accessible type
            extensionSourceFile.writeText(
                """
                public
                class Extension
                """
            )
    
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top