Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 251 for CONSTRUCTOR (0.28 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    - expose a property named "`name`" as the unique, and constant, name for the object. The `domainObjectContainer(Class)`
    variant of the method creates new instances by calling the constructor of the class that takes a string argument, which is the desired name of the object.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

    def QuantizeWeightPass : Pass<"stablehlo-quantize-weight", "mlir::func::FuncOp"> {
      let summary = "Quantizes the weight component of StableHLO graph.";
      let dependentDialects = ["mlir::stablehlo::StablehloDialect"];
      let constructor = "mlir::quant::stablehlo::CreateQuantizeWeightPass()";
    }
    
    def UnfuseMhloBatchNormPass : Pass<"stablehlo-unfuse-mhlo-batch-norm", "mlir::func::FuncOp"> {
      let summary = "Unfuses batch normalization into arithmetic ops.";
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/fromLanguageTree/LanguageTreeToDom.kt

                    }
                }
    
                else -> null
            }
            return recurse(this)?.toString()
        }
    }
    
    
    class LanguageTreeBackedDocument internal constructor(
        val block: Block,
        val languageTreeMappingContainer: LanguageTreeMappingContainer,
        override val content: Collection<DeclarativeDocument.DocumentNode>
    ) : DeclarativeDocument {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

      if (failed(pm_.run(user_module))) {
        return errors::Internal("Failed to run the decompose passes.");
      }
      return absl::OkStatus();
    }
    
    // Constructor of the decompose context.
    TFRDecomposeContext::TFRDecomposeContext(mlir::ModuleOp tfr_module)
        : tfr_module_(tfr_module), pm_(tfr_module_.getContext()) {
      mlir::OpPassManager& func_pm = pm_.nest<mlir::func::FuncOp>();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

    import okio.Buffer
    import okio.BufferedSource
    import okio.Sink
    import okio.Source
    import okio.Timeout
    
    /** A logical bidirectional stream. */
    @Suppress("NAME_SHADOWING")
    class Http2Stream internal constructor(
      val id: Int,
      val connection: Http2Connection,
      outFinished: Boolean,
      inFinished: Boolean,
      headers: Headers?,
    ) {
      internal val lock: ReentrantLock = ReentrantLock()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

    import org.gradle.util.Path
    import java.io.File
    import java.io.InputStream
    import java.io.OutputStream
    
    
    @ServiceScope(Scope.Build::class)
    class ConfigurationCacheIO internal constructor(
        private val startParameter: ConfigurationCacheStartParameter,
        private val host: DefaultConfigurationCache.Host,
        private val problems: ConfigurationCacheProblems,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

                        quantfork::QuantizationForkDialect>();
      }
    
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PreprocessOpPass)
    
      explicit PreprocessOpPass() = default;
    
      // Constructor used by manually creating the pass.
      explicit PreprocessOpPass(OpSet op_set, const QuantMethod quantization_method,
                                bool enable_per_channel_quantization) {
        op_set_ = op_set;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return op.precedence
    }
    
    // Constructor is a constructor.
    type Constructor struct {
    	Name AST
    	Base AST // base class of inheriting constructor
    }
    
    func (c *Constructor) print(ps *printState) {
    	ps.print(c.Name)
    	// We don't include the base class in the demangled string.
    }
    
    func (c *Constructor) Traverse(fn func(AST) bool) {
    	if fn(c) {
    		c.Name.Traverse(fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

            if (fir.realPsi != null) return fir.realPsi === psi
    
            if (fir is FirConstructor && psi is KtConstructor<*>) {
                if (psi is KtPrimaryConstructor && fir.isPrimary) return true // There can only be one primary constructor.
                if (psi is KtPrimaryConstructor || fir.isPrimary) return false
            }
    
            if (!modifiersMatch(psi, fir)) return false
            if (!receiverTypeMatches(psi, fir)) return false
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

         */
        abstract override val name: Name
    
        /**
         * The corresponding [KaPropertySymbol] if the current value parameter is a `val` or `var` declared inside the primary constructor.
         */
        public open val generatedPrimaryConstructorProperty: KaKotlinPropertySymbol? get() = null
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top