Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 308 for Accessible (0.93 sec)

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

    
    internal
    fun typeErasure(type: String): InaccessibilityReason =
        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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinAlwaysAccessibleLifetimeToken.kt

        }
    
        override fun isAccessible(): Boolean {
            return true
        }
    
        override fun getInaccessibilityReason(): String {
            error("Getting inaccessibility reason for validity token when it is accessible")
        }
    }
    
    public object KotlinAlwaysAccessibleLifetimeTokenFactory : KaLifetimeTokenFactory() {
        override val identifier: KClass<out KaLifetimeToken> = KotlinAlwaysAccessibleLifetimeToken::class
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.1K bytes
    - Viewed (1)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	//
    	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
    	// object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.
    	//
    	// Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL
    	// expressions. This includes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

        /**
         * Populate the Map of direct hits. These
         * are taken from all the public methods
         * that our class provides.
         */
        private void populateMethodCache() {
            // get all publicly accessible methods
            Method[] methods = getAccessibleMethods(clazz);
    
            // map and cache them
            for (Method method : methods) {
                // now get the 'public method', the method declared by a
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

            "String"     | "\"hello\""   | "+ \"world\""
            "int"        | "1"           | "+ 2"
            "boolean"    | "true"        | "& false"
        }
    
        def "collects constants from accessible static fields as accessible dependents"() {
            given:
            String clazz = """
    class A {
        static final int STATIC_FINAL_FIELD = Constant1.CONSTANT1;
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/ForwardingObjectTesterTest.java

          // UnsupportedOperationException is what we see on Android.
          return;
        }
        fail("Should have thrown");
      }
    
      @AndroidIncompatible // TODO(cpovirk): java.lang.IllegalAccessError: superclass not accessible
      public void testSuccessfulForwarding() {
        ForwardingObjectTester.testForwardingObject(ForwardToDelegate.class);
      }
    
      private abstract static class FailToForward extends ForwardingObject implements Runnable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/ForwardingObjectTesterTest.java

          // UnsupportedOperationException is what we see on Android.
          return;
        }
        fail("Should have thrown");
      }
    
      @AndroidIncompatible // TODO(cpovirk): java.lang.IllegalAccessError: superclass not accessible
      public void testSuccessfulForwarding() {
        ForwardingObjectTester.testForwardingObject(ForwardToDelegate.class);
      }
    
      private abstract static class FailToForward extends ForwardingObject implements Runnable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/AccessRule.java

     *
     * @since 3.0
     */
    public interface AccessRule {
    
        /**
         * Returns the encoded type of the access rule. The meaning of the values:
         * <ul>
         *     <li>0: the rule defines accessible paths</li>
         *     <li>1: the rule defines inaccessible paths</li>
         *     <li>2: the rule defines discouraged paths</li>
         * </ul>
         *
         * @return The type of this access rule.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/hwcap_linux.go

    			case _AT_HWCAP:
    				hwCap = val
    			case _AT_HWCAP2:
    				hwCap2 = val
    			}
    		}
    		return nil
    	}
    
    	buf, err := os.ReadFile(procAuxv)
    	if err != nil {
    		// e.g. on android /proc/self/auxv is not accessible, so silently
    		// ignore the error and leave Initialized = false. On some
    		// architectures (e.g. arm64) doinit() implements a fallback
    		// readout and will set Initialized = true again.
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirNonStaticMembersScope.kt

    import org.jetbrains.kotlin.name.Name
    
    /**
     * [FirNonStaticMembersScope] includes non-static callables and inner classes.
     *
     * Inner classes are included because they are accessible from a value of the outer class. For example:
     *
     * ```
     * class Outer {
     *     inner class Inner
     * }
     *
     * fun foo() {
     *     val outer = Outer()
     *     outer.Inner()
     * }
     * ```
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top