- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 48 for remember (0.22 seconds)
-
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NewIncubatingAPIRule.java
@Override public Violation maybeViolation(final JApiCompatibility member) { if (member instanceof JApiMethod || member instanceof JApiField || member instanceof JApiClass) { if (!isIncubating((JApiHasAnnotations) member)) { return null; } if (member instanceof JApiMethod && isOverride((JApiMethod) member)) { return null; }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Oct 06 19:15:15 GMT 2022 - 1.6K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/AcceptedApiChangesTest.groovy
"member": "Implemented interface org.gradle.api.initialization.IncludedBuild", "changes": ["Interface has been removed"], "acceptation": "@Incubating interface has been removed" }, { "type": "other.Type", "member": "Method other.Type.someMethod",
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jun 04 14:00:46 GMT 2024 - 3.8K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractSuperClassChangesRule.groovy
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 24 14:15:15 GMT 2025 - 2.2K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTask.kt
val member: String?, val acceptation: String?, val changes: List<String>? ) { override fun toString(): String = "Type: '$type', Member: '$member'" } @VisibleForTesting data class AcceptedApiChanges( val acceptedApiChanges: List<AcceptedApiChange>? )Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jun 04 14:00:46 GMT 2024 - 2.9K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/KotlinModifiersBreakingChangeRule.groovy
super(params) } @Override Violation maybeViolation(JApiCompatibility member) { if (isNewOrRemoved(member) || !(member instanceof JApiMethod)) { return null } JApiMethod method = (JApiMethod) member def metadata = KotlinMetadataQueries.INSTANCE def oldMethod = method.oldMethod.get()
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Oct 06 19:15:15 GMT 2022 - 2.4K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingChangesRule.java
public Violation maybeViolation(final JApiCompatibility member) { if (!member.isBinaryCompatible()) { removeAnnotationChanges(member); if ((member instanceof JApiClass) && member.getCompatibilityChanges().isEmpty()) { // A member of the class breaks binary compatibility. // That will be handled when the member is passed to `maybeViolation`. return null;
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 24 14:15:15 GMT 2025 - 3.8K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy
if (member instanceof JApiClass) { return isIncubatingClass((JApiClass) member) } if (member instanceof JApiMethod) { return isIncubatingOrOverrideMethod((JApiMethod) member) } if (member instanceof JApiField) { return isIncubatingField((JApiField) member) } if (member instanceof JApiConstructor) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jan 22 12:18:18 GMT 2026 - 10K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy
} } else if (member instanceof JApiConstructor) { JApiConstructor ctor = (JApiConstructor) member inspectParametersNullabilityOf(ctor.oldConstructor.get(), ctor.newConstructor.get()) } else if (member instanceof JApiMethod) { JApiMethod method = (JApiMethod) member CtMethod oldMethod = method.oldMethod.get()Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Oct 27 09:26:32 GMT 2025 - 15.4K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDescriptionRenderer.java
for (ClassDoc subClass : classDoc.getSubClasses()) { Element member = document.createElement("member"); Element apilink = document.createElement("apilink"); apilink.setAttribute("class", subClass.getName()); member.appendChild(apilink); simplelist.appendChild(member); } seg.appendChild(simplelist); } }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 4.1K bytes - Click Count (0) -
dbflute_fess/_readme.txt
For example, if a table called "MEMBER" exists, you can use these classes like this: /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - memberBhv.selectEntity(cb -> { cb.query().setMemberId_Equal(3); }).alwaysPresent(member -> { ... = member.getMemberName(); }); // memberBhv : Behavior (instance) // MemberCB(cb) : ConditionBean // Member(member) : Entity - - - - - - - - - -/
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jul 04 22:46:31 GMT 2015 - 2.5K bytes - Click Count (0)