Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 356 for inaccessible (0.35 sec)

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

            when (this) {
                is TypeAccessibility.Accessible ->
                    TypedAccessorSpec(this, accessorNameSpec(schemaEntry.name), schemaEntry.type)
                is TypeAccessibility.Inaccessible ->
                    null
            }
        }
    
    
    private
    fun documentInaccessibilityReasons(name: AccessorNameSpec, typeAccess: TypeAccessibility.Inaccessible): String =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaTest.kt

        fun `non existing type is represented as Inaccessible because NonAvailable`() {
    
            val type = SchemaType.of<NonExistingType>()
    
            val projectSchema = availableProjectSchemaFor(
                schemaWithExtensions("buildScan" to type),
                ClassPath.EMPTY
            )
    
            assertThat(
                projectSchema.extension("buildScan").type,
                equalTo(inaccessible(type, nonAvailable(type.kotlinString)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/errsupport.go

    	// inaccessible   x.foo   !=    foo    cannot refer to unexported field foo
    	// missing        x.foo   !=    foO    type X has no field or method foo
    
    	const (
    		ok           = iota
    		missing      // no object found
    		misspelled   // found object with different spelling
    		unexported   // found object with name differing only in first letter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/TypeAccessibilityProviderTest.kt

        fun `internal Kotlin type is inaccessible because NonPublic`() {
    
            val internalType = SchemaType.of<InternalType>()
            assertThat(
                accessibilityFor(
                    internalType,
                    classPath = jarClassPathWith(InternalType::class)
                ),
                equalTo(inaccessible(internalType, InaccessibilityReason.NonPublic(internalType.kotlinString)))
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/go/types/errsupport.go

    	// inaccessible   x.foo   !=    foo    cannot refer to unexported field foo
    	// missing        x.foo   !=    foO    type X has no field or method foo
    
    	const (
    		ok           = iota
    		missing      // no object found
    		misspelled   // found object with different spelling
    		unexported   // found object with name differing only in first letter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. 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)
  7. 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.
         */
        int getKind();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUnavailableExpirationStrategy.java

        public static final String REGISTRY_ENTRY_UNEXPECTEDLY_LOST = "after the daemon was no longer found in the daemon registry";
        public static final String REGISTRY_BECAME_INACCESSIBLE = "after the daemon registry became inaccessible";
    
        private final Daemon daemon;
    
        public DaemonRegistryUnavailableExpirationStrategy(Daemon daemon) {
            this.daemon = daemon;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/lifetime/KtLifetimeToken.kt

        if (!isValid()) {
            throw KaInvalidLifetimeOwnerAccessException("Access to invalid $this: ${getInvalidationReason()}")
        }
        if (!isAccessible()) {
            throw KaInaccessibleLifetimeOwnerAccessException("$this is inaccessible: ${getInaccessibilityReason()}")
        }
    }
    
    public abstract class KaIllegalLifetimeOwnerAccessException : IllegalStateException()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. test/rename.go

    			true +
    			uint +
    			uint8 +
    			uint16 +
    			uint32 +
    			uint64 +
    			uintptr +
    			iota
    	if n != NUM*(NUM-1)/2 {
    		fmt.Println("BUG: wrong n", n, NUM*(NUM-1)/2)
    		runtime.Breakpoint() // panic is inaccessible
    	}
    }
    
    const (
    	// cannot use iota here, because iota = 38 below
    	append     = 1
    	bool       = 2
    	byte       = 3
    	complex    = 4
    	complex64  = 5
    	complex128 = 6
    	cap        = 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
Back to top