Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 283 for Heiber (0.2 sec)

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

        }
    
        Violation maybeViolation(final JApiCompatibility member) {
            if (!(member instanceof JApiClass)) {
                return null
            }
    
            if (!changed(member)) {
                return null
            }
    
            Optional<CtClass> oldClass = member.oldClass
            Optional<CtClass> newClass = member.newClass
            if (!oldClass.isPresent() || !newClass.isPresent()) {
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 06 19:15:15 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  2. dbflute_fess/playsql/replace-schema.sql

    create table DUMMY_MEMBER(
        MEMBER_ID INTEGER IDENTITY NOT NULL PRIMARY KEY,
        MEMBER_NAME VARCHAR(200) NOT NULL,
        MEMBER_ACCOUNT VARCHAR(50) NOT NULL,
        MEMBER_STATUS_CODE CHAR(3) NOT NULL,
        FORMALIZED_DATETIME DATETIME,
        BIRTHDATE DATE,
        REGISTER_DATETIME DATETIME NOT NULL,
        REGISTER_USER VARCHAR(200) NOT NULL,
        UPDATE_DATETIME DATETIME NOT NULL,
        UPDATE_USER VARCHAR(200) NOT NULL,
        VERSION_NO BIGINT NOT NULL
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 449 bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

        #}
        # example for table classification
        #; MemberStatus = list:{
        #    ; map:{topComment=status of member from entry to withdrawal; codeType=String}
        #    ; map:{
        #        ; table=MEMBER_STATUS
        #        ; code=MEMBER_STATUS_CODE; name=MEMBER_STATUS_NAME
        #        ; comment=DESCRIPTION; orderBy=DISPLAY_ORDER
        #    }
        #}
    }
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.2K bytes
    - Viewed (0)
  4. dbflute_fess/playsql/_readme.txt

         |-ut
            |-xls
               |-20-member.xls  
               |-30-product.xls  
               |-defaultValueMap.dataprop
    - - - - - - - - - -/
    
    The format of a xls file is like this:
    /- - - - - - - - - - - - - - - - - - - -
    |MEMBER_ID|MEMBER_NAME|BIRTHDATE |
    |        1|Stojkovic  |1965/03/03|
    |        2|Savicevic  |          |
    |        3|...        |...       |
    
    (Sheet)
    MEMBER / MEMBER_LOGIN / MEMBER_SECURITY
    - - - - - - - - - -/
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 1.3K bytes
    - Viewed (0)
  5. 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",
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

             * with [getCompositeScope]) avoids duplicate inner classes, as they are contained in non-static and static scopes.
             *
             * A proper combined declared member scope kind also makes it easier to cache combined scopes directly (if needed).
             */
            COMBINED,
        }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

                        // with the sort used by AbstractAcceptedApiChangesMaintenanceTask.
                        result.acceptedApiChanges.sort((a, b) => { 
                            if ((a.type +'#' + a.member) > (b.type + '#' + b.member)) {
                                return 1; 
                            } else {
                                return -1;
                            }
                        });
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 07 20:38:43 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  8. 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>?
        )
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 07 20:38:43 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  9. maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    jvanzyl Jason van Zyl ******@****.*** ASF PMC Chair -5 brett Brett Porter ******@****.*** ASF PMC Member +10 evenisse Emmanuel Venisse ******@****.*** ASF PMC Member +1 jdcasey John Casey ******@****.*** ASF PMC Member -5 kenney Kenney Westerhof ******@****.*** Neonics PMC Member +1 trygvis Trygve Laugstol ******@****.*** ASF PMC Member +1 vmassol Vincent Massol ******@****.*** ASF PMC Member +1 vsiveton Vincent Siveton ******@****.*** ASF Committer -5 The Apache Software License,...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 9.9K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

                "Did not find expected error message in $this"
            }
        }
    
        protected
        data class Change(val type: String, val member: String) {
            override fun toString(): String = "Type: '$type', Member: '$member'"
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Nov 28 21:09:42 GMT 2022
    - 5.6K bytes
    - Viewed (0)
Back to top