Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for declaration (0.25 sec)

  1. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt

                if (declaration.matchesNameAndIsSince(method.name, version)) true
                else super.visit(declaration, arg)
    
            override fun visit(declaration: MethodDeclaration, arg: Unit?): Boolean? =
                if (declaration.matchesNameAndIsSince(method.name, version)) true
                else null
    
            override fun visit(declaration: EnumDeclaration, arg: Unit?): Boolean? {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Dec 01 20:12:19 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

        )
    
        /**
         * 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) {
            if (agentJarNames.isEmpty()) {
                return
            }
            var replacementsCount = 0
    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)
  3. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt

            kotlinDeclarationSatisfies(declaringClass, method) { declaration ->
                declaration.isDocumentedAsSince(version)
            }
    }
    
    
    private
    fun KtFile.kotlinDeclarationSatisfies(declaringClass: CtClass, method: CtMethod, predicate: (KtDeclaration) -> Boolean): Boolean {
    
        val qualifiedBaseName = declaringClass.baseQualifiedKotlinName
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 20 20:38:19 GMT 2023
    - 11.1K bytes
    - Viewed (0)
  4. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

            classNode.methods.singleOrNull { it.access.run { !isStatic && isAbstract } }
    
        /**
         * Test if a method is a prime declaration or an overrides that change the signature.
         *
         * There's no way to tell from the byte code that a method overrides the signature
         * of a parent declaration other than crawling up the type hierarchy.
         */
        private
        fun isSignificantDeclaration(methodNode: MethodNode): Boolean {
    
    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)
  5. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

            var incubating = "${declaration.typeParametersString}${declaration.fullyQualifiedName}"
            if (declaration is KtCallableDeclaration) {
                incubating += declaration.valueParametersString
                declaration.receiverTypeString?.let { receiver ->
                    incubating += " with $receiver receiver"
                }
                if (declaration.parent == ktFile) {
    HTML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sun Jun 25 02:53:14 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.kt

                /*
                 * The class that getResource called upon must be from within a jar that contains the import txt file.
                 *
                 * Note: Even though 'jump to declaration' in IJ will show this to be the 'DefaultImportsReader' from
                 * the plugin Gradle distribution, this is only true at compile time.
                 *
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jun 22 10:58:31 GMT 2022
    - 6.9K bytes
    - Viewed (0)
  7. .teamcity/test-buckets.json

    					"build-configuration",
    					"build-events",
    					"build-init",
    					"build-profile",
    					"composite-builds",
    					"configuration-cache",
    					"core",
    					"core-api",
    					"declarative-dsl-core",
    					"declarative-dsl-provider",
    					"dependency-management",
    					"diagnostics",
    					"ear",
    					"enterprise",
    					"execution",
    					"execution-e2e-tests",
    					"file-collections",
    Json
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon May 06 14:29:38 GMT 2024
    - 49.9K bytes
    - Viewed (0)
  8. .github/CODEOWNERS

    # Core automation platform (Declarative DSL)
    platforms/core-configuration/declarative-dsl-api/               @gradle/bt-declarative-dsl
    platforms/core-configuration/declarative-dsl-core/              @gradle/bt-declarative-dsl
    platforms/core-configuration/declarative-dsl-provider/          @gradle/bt-declarative-dsl
    
    # Core automation platform (core/runtime)
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 15:52:09 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  9. .teamcity/subprojects.json

        "crossVersionTests": false
      },
      {
        "name": "declarative-dsl-api",
        "path": "platforms/core-configuration/declarative-dsl-api",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "declarative-dsl-core",
        "path": "platforms/core-configuration/declarative-dsl-core",
        "unitTests": true,
        "functionalTests": true,
    Json
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue May 07 22:21:19 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/DecorateReleaseNotes.java

        /**
         * The rendered HTML release notes that need decoration.
         */
        @InputFile
        @PathSensitive(PathSensitivity.NONE)
        public abstract RegularFileProperty getHtmlFile();
    
        /**
         * The decorated HTML file
         */
        @OutputFile
        public abstract RegularFileProperty getDestinationFile();
    
        /**
         * JQuery used by the added decoration
         */
        @InputFiles
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Sep 28 06:35:15 GMT 2021
    - 4.1K bytes
    - Viewed (0)
Back to top