Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,293 for yFunction (0.14 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/AccessorTest.kt

                    )
                } else emptyList()
    
            override fun constructors(kClass: KClass<*>, preIndex: DataSchemaBuilder.PreIndex): Iterable<DataConstructor> = emptyList()
            override fun topLevelFunction(function: KFunction<*>, preIndex: DataSchemaBuilder.PreIndex): DataTopLevelFunction? = null
        }
    
        val configureLambdas = kotlinFunctionAsConfigureLambda + treatInterfaceAsConfigureLambda(MyFunctionalInterface::class)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

                    constructor(constructor, kClass, preIndex)
                }
    
        override fun topLevelFunction(function: KFunction<*>, preIndex: DataSchemaBuilder.PreIndex): DataTopLevelFunction =
            dataTopLevelFunction(function, preIndex)
    
        private
        fun memberFunction(
            inType: KClass<*>,
            function: KFunction<*>,
            preIndex: DataSchemaBuilder.PreIndex,
            configureLambdas: ConfigureLambdaHandler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            }
        }
    
        private fun KaSession.renderFunction(
            function: KFunction<*>,
            printer: PrettyPrinter,
            renderSymbolsFully: Boolean,
            vararg args: Any,
        ) {
            printer.append(function.name).append(": ")
            renderFunctionCall(function, printer, renderSymbolsFully, args)
        }
    
        private fun KaSession.renderProperty(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/jit/device_compiler.h

      ~DeviceCompiler() override;
    
      enum class CompileScope {
        kOp,
        kFunction,
      };
    
      // Compiles a function into a XlaCompiler::CompilationResult that can be used
      // to execute an XLA Computation. Compilation results are cached. Compilation
      // is skipped if there is a cache hit. `function` is the name of a Tensorflow
      // function to compile. `args` is a description of the arguments to the
      // computation.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val KaType.isFunctionType: Boolean
            get() = withValidityAssertion { functionTypeKind == FunctionTypeKind.Function }
    
        public val KaType.isKFunctionType: Boolean
            get() = withValidityAssertion { functionTypeKind == FunctionTypeKind.KFunction }
    
        public val KaType.isSuspendFunctionType: Boolean
            get() = withValidityAssertion { functionTypeKind == FunctionTypeKind.SuspendFunction }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top