Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for flag (0.22 sec)

  1. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

    inline val Int.isVarargs: Boolean
        get() = ACC_VARARGS in this
    
    
    private
    inline val Int.isSynthetic: Boolean
        get() = ACC_SYNTHETIC in this
    
    
    private
    operator fun Int.contains(flag: Int) =
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Feb 06 19:56:10 GMT 2024
    - 20.8K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/HasKotlinFlagsMetadataQuery.kt

    
    internal
    fun KotlinClassMetadata.hasKotlinFlag(memberType: MemberType, jvmSignature: String, flag: Flag): Boolean =
        hasKotlinFlags(memberType, jvmSignature) { flags ->
            flag(flags)
        }
    
    
    private
    fun KotlinClassMetadata.hasKotlinFlags(memberType: MemberType, jvmSignature: String, predicate: (Flags) -> Boolean): Boolean =
        when (this) {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Jun 07 08:14:15 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/KotlinMetadataQueries.kt

            hasKotlinFlag(ctMethod, Flag.Function.IS_INFIX)
    
        private
        fun hasKotlinFlag(ctClass: CtClass, flag: Flag): Boolean =
            queryKotlinMetadata(ctClass, false) { metadata ->
                metadata.hasKotlinFlag(MemberType.TYPE, ctClass.name, flag)
            }
    
        private
        fun hasKotlinFlag(ctMember: CtMember, flag: Flag): Boolean =
            queryKotlinMetadata(ctMember.declaringClass, false) { metadata ->
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Jun 07 08:20:38 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  4. .teamcity/mvnw.cmd

    @REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
    @REM     e.g. to debug Maven itself, use
    @REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
    @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
    @REM ----------------------------------------------------------------------------
    
    @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
    @echo off
    Batch File
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 6.5K bytes
    - Viewed (0)
  5. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

            FileCollectionBackedTextResource(temporaryFileProvider, windowsScriptTemplate, StandardCharsets.UTF_8)
        )
    
        /**
         * Modifies the start script injecting -javaagent flags. The start script file is updated in-place by appending Java agent switches to 'DEFAULT_JVM_OPTS' variable declaration.
         */
        private
        fun File.injectAgentOptions(separator: String) {
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Fri Feb 24 10:25:27 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  6. .teamcity/mvnw

    #   MAVEN_OPTS - parameters passed to the Java VM when running Maven
    #     e.g. to debug Maven itself, use
    #       set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
    #   MAVEN_SKIP_RC - flag to disable loading of mavenrc files
    # ----------------------------------------------------------------------------
    
    if [ -z "$MAVEN_SKIP_RC" ] ; then
    
      if [ -f /etc/mavenrc ] ; then
        . /etc/mavenrc
      fi
    
    Shell Script
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 9.8K bytes
    - Viewed (0)
  7. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithMethods.java

         * A method that returns void.
         */
        void voidMethod() {
        }
    
        /**
         * A method that returns a reference type.
         */
        CombinedInterface refTypeMethod(JavaInterface refParam, boolean aFlag) {
            return null;
        }
    
        /**
         * A method that returns an array
         */
        String[][] arrayMethod(String[]... strings) {
            return null;
        }
    
        int getIntProp() {
    Java
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 717 bytes
    - Viewed (0)
  8. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithMethods.groovy

         */
        void voidMethod() {
        }
    
        /**
         * A method that returns a reference type.
         */
        public final CombinedInterface refTypeMethod(JavaInterface someThing, boolean aFlag) {
            null
        }
    
        /**
         * A method that returns a default type.
         */
        def defMethod(def defParam) {
            null
        }
    
        /**
         * A method that returns an array
         */
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 952 bytes
    - Viewed (0)
Back to top