Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 662 for accessor (0.23 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java

                    return true;
                }
                ReplacedAccessor accessor = e.getValue();
                return accessor.getBinaryCompatibility() == BinaryCompatibility.ACCESSORS_KEPT;
            });
            if (!keptAccessors.isEmpty()) {
                String formattedLeft = CollectionUtils.join("\n", keptAccessors.keySet());
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineDelegatedPropertyAccessorsAnalyzer.kt

        // One of the compiler lowerings, namely `PropertyReferenceLowering`,
        // optimizes usages of property references in some cases,
        // and if a containing delegated property accessor is inline,
        // it might need this accessor's bytecode.
        //
        // If an accessor function is defined in a different module,
        // IDE tries to acquire its bytecode via the index, however,
        // the index doesn't cover classfiles from compiler output,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Aug 29 23:55:31 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionsCollector.kt

            if (descriptor is DeserializedSimpleFunctionDescriptor) return
    
            analyzeNextIfInline(descriptor)
    
            if (descriptor is PropertyDescriptor) {
                for (accessor in descriptor.accessors) {
                    analyzeNextIfInline(accessor)
                }
            }
        }
    
        private fun analyzeNextIfInline(descriptor: CallableDescriptor) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Aug 29 23:55:31 GMT 2023
    - 2K bytes
    - Viewed (0)
  4. build-logic-commons/basics/build.gradle.kts

        implementation(kotlin("compiler-embeddable") as String) {
            because("Required by KotlinSourceParser")
        }
        implementation(kotlin("gradle-plugin") as String) {
            because("For manually defined KotlinSourceSet accessor - sourceSets.main.get().kotlin")
        }
    
        testImplementation("org.junit.jupiter:junit-jupiter-engine:5.8.2")
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sun Oct 01 12:13:59 GMT 2023
    - 981 bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

            if (jvmNameFromProperty != null) {
                return jvmNameFromProperty
            }
    
            val accessor = if (isSetter) property.setter else property.getter
            val jvmNameFromAccessor = accessor?.getJvmNameFromAnnotation(analysisSession.useSiteSession)
            if (jvmNameFromAccessor != null) {
                return jvmNameFromAccessor
            }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Sep 19 22:14:09 GMT 2023
    - 7.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolInfoProvider.kt

            property: KtPropertySymbol,
            accessor: KtPropertyAccessorSymbol?,
            accessorDescriptorProvider: (PropertyDescriptor) -> PropertyAccessorDescriptor?
        ): DeprecationInfo? {
            val propertyDescriptor = getSymbolDescriptor(property) as? PropertyDescriptor ?: return null
            ForceResolveUtil.forceResolveAllContents(propertyDescriptor)
    
            if (accessor != null) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Jun 08 13:34:50 GMT 2023
    - 7.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/user/bsentity/BsGroup.java

            return sb.toString();
        }
    
        // ===================================================================================
        //                                                                            Accessor
        //                                                                            ========
        public Long getGidNumber() {
            checkSpecifiedProperty("gidNumber");
            return gidNumber;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsCrawlingInfo.java

            return sb.toString();
        }
    
        // ===================================================================================
        //                                                                            Accessor
        //                                                                            ========
        public Long getCreatedTime() {
            checkSpecifiedProperty("createdTime");
            return createdTime;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiPropertyGetterSymbol.kt

        override val descriptor: PropertyGetterDescriptor? by cached {
            val bindingContext = analysisContext.analyze(psi, AnalysisMode.PARTIAL)
            bindingContext[BindingContext.PROPERTY_ACCESSOR, psi] as? PropertyGetterDescriptor
        }
    
        override val modality: Modality
            get() = withValidityAssertion { psi.property.ktModality ?: descriptor?.ktModality ?: Modality.FINAL }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/BsCrawlingInfoParam.java

            return sb.toString();
        }
    
        // ===================================================================================
        //                                                                            Accessor
        //                                                                            ========
        public String getCrawlingInfoId() {
            checkSpecifiedProperty("crawlingInfoId");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.3K bytes
    - Viewed (0)
Back to top