Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,621 for builder2 (0.18 sec)

  1. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/configurators/StandaloneModeConfigurator.kt

    import org.jetbrains.kotlin.test.builders.TestConfigurationBuilder
    import org.jetbrains.kotlin.test.services.TestModuleStructure
    import org.jetbrains.kotlin.test.services.TestServices
    
    object StandaloneModeConfigurator : StandaloneModeConfiguratorBase() {
    
        override fun configureTest(builder: TestConfigurationBuilder, disposable: Disposable) {
            sourceConfigurator.configureTest(builder, disposable)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractBuiltInTypeTest.kt

    abstract class AbstractBuiltInTypeTest : AbstractTypeTest() {
    
        override fun configureTest(builder: TestConfigurationBuilder) {
            super.configureTest(builder)
            builder.apply {
                useDirectives(Directives)
            }
        }
    
        override fun getType(analysisSession: KaSession, ktFile: KtFile, module: KtTestModule, testServices: TestServices): KaType {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.h

    absl::StatusOr<mlir::quant::QuantizedType> GetQuantizedType(
        const tflite::TensorT& tensor, mlir::Builder builder,
        bool is_constant = false, mlir::Type storage_type = {});
    
    // Imports float tensor with calibration value into calibrated quantized type.
    absl::StatusOr<mlir::quant::QuantizedType> GetCalibratedQuantizedType(
        const tflite::TensorT& tensor, mlir::Builder builder);
    
    absl::StatusOr<mlir::TensorType> GetTensorType(const tflite::TensorT& tensor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. tensorflow/c/kernels.cc

      explicit KernelBuilderFactory(TF_KernelBuilder* builder)
          : builder_(builder) {}
      ::tensorflow::OpKernel* Create(
          ::tensorflow::OpKernelConstruction* context) override {
        if (builder_->compute_function)
          return new ::tensorflow::COpKernel(context, builder_->create_function,
                                             builder_->compute_function,
                                             builder_->delete_function);
        else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/convert_launch_func_to_tf_call.cc

        OpBuilder builder(launch);
        auto call_op = builder.create<TF::PartitionedCallOp>(
            module.getLoc(), launch.getResultTypes(), launch.getOperands(),
            SymbolRefAttr::get(builder.getContext(), launch.getFunc()),
            /*config=*/builder.getStringAttr(""),
            /*config_proto=*/builder.getStringAttr(""),
            /*executor_type=*/builder.getStringAttr(""));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 21:08:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. test/fixedbugs/issue33866.dir/b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package b
    
    import "./a"
    
    type (
    	ABuilder = a.Builder
    )
    
    func Bfunc() ABuilder {
    	return ABuilder{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 06 12:11:17 UTC 2019
    - 262 bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/AbstractReferenceImportAliasTest.kt

    import kotlin.test.assertNotNull
    
    abstract class AbstractReferenceImportAliasTest : AbstractAnalysisApiBasedTest() {
        override fun configureTest(builder: TestConfigurationBuilder) {
            super.configureTest(builder)
            with(builder) {
                useDirectives(Directives)
            }
        }
    
        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 15:30:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinSettingsScriptModelCrossVersionSpec.groovy

                sourcePathFor(settings),
                matchesProjectsSourceRoots(withMainSourceSetJavaKotlinIn("buildSrc")))
        }
    
        @TargetGradleVersion(">=5.4 <7.5")
        @LeaksFileHandles("Kotlin compiler daemon on buildSrc jar")
        @Flaky(because = "https://github.com/gradle/gradle-private/issues/3708")
        def "sourcePath includes buildSrc project dependencies source roots"() {
    
            given:
    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. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/configurators/StandaloneModeConfiguratorBase.kt

    import org.jetbrains.kotlin.test.builders.TestConfigurationBuilder
    
    abstract class StandaloneModeConfiguratorBase : AnalysisApiTestConfigurator() {
        override val analyseInDependentSession: Boolean get() = false
        override val frontendKind: FrontendKind get() = FrontendKind.Fir
    
        override val testPrefix: String
            get() = "standalone.fir"
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildToolingModelController.java

            // Look for a build scoped builder
            ToolingModelBuilderLookup.Builder builder = buildScopeLookup.maybeLocateForBuildScope(modelName, param, buildState);
            if (builder != null) {
                return new BuildToolingScope(builder);
            }
    
            // Force configuration of the build and locate builder for default project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 17:25:08 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top