Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 880 for yFunction (0.26 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/DependencyCollectorFunctionExtractorAndRuntimeResolver.kt

            val discoveredCollectorDeclarations: List<DependencyCollectorDeclaration> = kClass.memberFunctions
                .filter { function -> hasDependencyCollectorGetterSignature(kClass, function) }
                .flatMap { function ->
                    val name = dependencyCollectorNameFromGetterName(function.name)
                    expandToOverloads { param ->
                        DependencyCollectorDeclaration(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/typeInfoProvider/FirIdeNormalAnalysisSourceModuleFunctionClassKindTestGenerated.java

      }
    
      @Test
      @TestMetadata("function.kt")
      public void testFunction() {
        runTest("analysis/analysis-api/testData/components/typeInfoProvider/functionClassKind/function.kt");
      }
    
      @Test
      @TestMetadata("kFunction.kt")
      public void testKFunction() {
        runTest("analysis/analysis-api/testData/components/typeInfoProvider/functionClassKind/kFunction.kt");
      }
    
      @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/typeInfoProvider/FirIdeDependentAnalysisSourceModuleFunctionClassKindTestGenerated.java

      }
    
      @Test
      @TestMetadata("function.kt")
      public void testFunction() {
        runTest("analysis/analysis-api/testData/components/typeInfoProvider/functionClassKind/function.kt");
      }
    
      @Test
      @TestMetadata("kFunction.kt")
      public void testKFunction() {
        runTest("analysis/analysis-api/testData/components/typeInfoProvider/functionClassKind/kFunction.kt");
      }
    
      @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/schemaFromGradleExtensions.kt

        override fun constructors(kClass: KClass<*>, preIndex: DataSchemaBuilder.PreIndex): Iterable<DataConstructor> = emptyList()
    
        override fun topLevelFunction(function: KFunction<*>, preIndex: DataSchemaBuilder.PreIndex) = null
    }
    
    
    private
    class CachedHierarchyAnnotationChecker(private val annotationType: KClass<out Annotation>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionTypeProvider.kt

         *
         * For a regular function, it would be kotlin.FunctionN<Ps, R> where
         *   N is the number of value parameters in the function;
         *   Ps are types of value parameters;
         *   R is the return type of the function.
         * Depending on the function's attributes, such as `suspend` or reflective access, different functional type,
         * such as `SuspendFunction`, `KFunction`, or `KSuspendFunction`, will be constructed.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/software/schemaFromSoftwareTypes.kt

        override fun constructors(kClass: KClass<*>, preIndex: DataSchemaBuilder.PreIndex): Iterable<DataConstructor> = emptyList()
    
        override fun topLevelFunction(function: KFunction<*>, preIndex: DataSchemaBuilder.PreIndex) = null
    }
    
    
    private
    class RuntimeModelTypeAccessors(info: List<SoftwareTypeInfo<*>>) : RuntimeCustomAccessors {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/cache/internal/AbstractCrossBuildInMemoryCacheTest.groovy

            def b = new Object()
            def function = Mock(Function)
    
            given:
            function.apply("a") >> a
            function.apply("b") >> b
    
            def cache = newCache()
    
            expect:
            cache.get("a", function) == a
            cache.get("b", function) == b
            cache.get("a", function) == a
        }
    
        def "creates each entry once"() {
            def a = new Object()
            def b = new Object()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

    (function ($) {
        const renderCommitIds = function (commits) {
            return commits.map(function (commit) {
                return commit.substring(0, 7);
            }).join('|');
        };
    
        const plots = [];
    
        const togglePlot = function (chartId, label) {
            const plot = plots[chartId];
            const plotData = plot.getData();
            $.each(plotData, function (index, value) {
                if (value.label == label) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeRuntimeFunction.kt

    }
    
    
    internal
    class ReflectionFunction(private val kFunction: KFunction<*>, private val configureLambdaHandler: ConfigureLambdaHandler) : DeclarativeRuntimeFunction {
        override fun callBy(receiver: Any, binding: Map<DataParameter, Any?>, hasLambda: Boolean): DeclarativeRuntimeFunction.InvocationResult {
            val params = FunctionBinding.convertBinding(kFunction, receiver, binding, hasLambda, configureLambdaHandler)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:27 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/TableCollectors.java

              V,
              I extends Table<R, C, V>>
          Collector<T, ?, I> toTable(
              java.util.function.Function<? super T, ? extends R> rowFunction,
              java.util.function.Function<? super T, ? extends C> columnFunction,
              java.util.function.Function<? super T, ? extends V> valueFunction,
              java.util.function.Supplier<I> tableSupplier) {
        return TableCollectors.<T, R, C, V, I>toTable(
            rowFunction,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top