Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for unused_parameter (0.16 sec)

  1. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/incompleteDelegation.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (3,21-28)
        UNUSED_PARAMETER      text ranges: [(53,54)]
          PSI: KtParameter at (3,21-28)
      for PSI element of type KtParameter at (3,30-45)
        UNUSED_PARAMETER      text ranges: [(62,63)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 29 08:27:53 UTC 2023
    - 299 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaInnerClassFromAnotherModule.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (13,25-61)
        UNUSED_PARAMETER      text ranges: [(86,95)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 165 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaNestedClass.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (11,25-61)
        UNUSED_PARAMETER      text ranges: [(64,73)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 165 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaNestedClassFromAnotherModule.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (13,25-61)
        UNUSED_PARAMETER      text ranges: [(86,95)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 165 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaInnerClass.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (11,25-61)
        UNUSED_PARAMETER      text ranges: [(64,73)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 165 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/PrecompiledProjectScript.kt

        }
    
        /**
         * Configures the build script classpath for this project.
         *
         * @see [Project.buildscript]
         */
        @Suppress("unused")
        open fun buildscript(@Suppress("unused_parameter") block: ScriptHandlerScope.() -> Unit) {
            throw IllegalStateException("The `buildscript` block is not supported on Kotlin script plugins, please use the `plugins` block or project level dependencies.")
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/demoTypes.kt

    @file:Suppress("UNUSED_PARAMETER")
    
    package com.example
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Builder
    import org.gradle.declarative.dsl.model.annotations.Restricted
    
    
    class Abc {
        @get:Restricted
        var a: Int = 0
    
        @Restricted
        fun b(): Int = 1
    
        @get:Restricted
        var str: String = ""
    
        @Adding
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 949 bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/CompiledKotlinBuildScript.kt

         */
        @Suppress("unused")
        open fun buildscript(@Suppress("unused_parameter") block: ScriptHandlerScope.() -> Unit): Unit =
            internalError()
    
        /**
         * Configures the plugin dependencies for this project.
         *
         * @see [PluginDependenciesSpec]
         */
        @Suppress("unused")
        open fun plugins(@Suppress("unused_parameter") block: PluginDependenciesSpecScope.() -> Unit): Unit =
            invalidPluginsCall()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/AnalysisFilterTest.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @file:Suppress("UNUSED_PARAMETER")
    
    package org.gradle.internal.declarativedsl.analysis
    
    import org.gradle.declarative.dsl.model.annotations.Configuring
    import org.gradle.declarative.dsl.model.annotations.Restricted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ExtraPropertiesExtensionsTest.kt

                    verify(extra).get("property")
                    verifyNoMoreInteractions()
                }
                assertThat(property, nullValue())
            }
        }
    
        private
        fun use(@Suppress("unused_parameter") property: Int?) = Unit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top