Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for isTestable (0.14 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftBinary.java

         */
        Provider<String> getModule();
    
        /**
         * Returns true if this binary has testing enabled.
         *
         * @since 4.4
         */
        boolean isTestable();
    
        /**
         * Returns the Swift source files of this binary.
         */
        FileCollection getSwiftSource();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/swift/plugins/SwiftBasePlugin.java

                    task.getSource().from(binary.getSwiftSource());
                    task.getDebuggable().set(binary.isDebuggable());
                    task.getOptimized().set(binary.isOptimized());
                    if (binary.isTestable()) {
                        task.getCompilerArgs().add("-enable-testing");
                    }
                    if (binary.getTargetMachine().getOperatingSystemFamily().isMacOs()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftBinary.java

            return identity.isDebuggable();
        }
    
        @Override
        public boolean isOptimized() {
            return identity.isOptimized();
        }
    
        @Override
        public boolean isTestable() {
            return testable;
        }
    
        @Override
        public FileCollection getSwiftSource() {
            return source;
        }
    
        @Override
        public FileCollection getCompileModules() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/smartCastProvider/AbstractHLSmartCastInfoTest.kt

                    val smartCastInfo = expression.getSmartCastInfo()
                    buildString {
                        appendLine("expression: ${expression.text}")
                        appendLine("isStable: ${smartCastInfo?.isStable}")
                        appendLine("smartCastType: ${smartCastInfo?.smartCastType?.render(position = Variance.INVARIANT)}")
    
                        val receiverSmartCasts = expression.getImplicitReceiverSmartCast()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSessionProvider.kt

    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    import org.jetbrains.kotlin.analysis.project.structure.ProjectStructureProvider
    import org.jetbrains.kotlin.analysis.project.structure.isStable
    import org.jetbrains.kotlin.analysis.api.platform.lifetime.KotlinReadActionConfinementLifetimeToken
    import org.jetbrains.kotlin.psi.KtElement
    import java.util.concurrent.ConcurrentMap
    import kotlin.reflect.KClass
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSmartCastProvider.kt

    public class KaSmartCastInfo(
        private val backingSmartCastType: KaType,
        private val backingIsStable: Boolean,
        override val token: KaLifetimeToken
    ) : KaLifetimeOwner {
        public val isStable: Boolean get() = withValidityAssertion { backingIsStable }
        public val smartCastType: KaType get() = withValidityAssertion { backingSmartCastType }
    
        override fun equals(other: Any?): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSmartcastProvider.kt

            val type = expression.smartcastType.coneTypeSafe<ConeKotlinType>()?.asKtType() ?: return null
            return KaSmartCastInfo(type, expression.isStable, token)
        }
    
        private val KtExpression.isImplicitSmartCastInfoTarget: Boolean
            get() = this is KtNameReferenceExpression || this is KtOperationReferenceExpression
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

        attributes.emplace_back(builder.getNamedAttr(
            "dimension", BuildVhloIntV1Attr(op->dimension, builder)));
        attributes.emplace_back(builder.getNamedAttr(
            "is_stable",
            mlir::vhlo::BooleanV1Attr::get(builder.getContext(), op->is_stable)));
        return;
      }
      if (const auto* op = op_union.AsStablehloScatterOptions()) {
        attributes.emplace_back(builder.getNamedAttr(
            "update_window_dims",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo.mlir

    //CHECK-NEXT: return %0 : tensor<1x1x64xf32>
    //CHECK-NEXT:}
    
    func.func @sort(%arg0: tensor<448xf32>, %arg1: tensor<448xi32>) -> tensor<448xf32> {
      %0, %1 = "vhlo.sort_v1"(%arg0, %arg1) <{dimension = #vhlo.integer_v1<0 : i64>, is_stable = #vhlo.bool_v1<true>}> ({
        ^bb0(%arg23: tensor<f32>, %arg24: tensor<f32>, %arg25: tensor<i32>, %arg26: tensor<i32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

                !resolvedType.isNullableType()
            }
    
            when (val fir = expression.getOrBuildFir(analysisSession.firResolveSession)) {
                is FirSmartCastExpression -> if (fir.isStable) {
                    if (fir.smartcastTypeWithoutNullableNothing != null) {
                        return DefiniteNullability.DEFINITELY_NULL
                    } else if (fir.isNotNullable()) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top