Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 251 for CONSTRUCTOR (0.25 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

              LiftQuantizableSpotsAsFunctionsPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(
          LiftQuantizableSpotsAsFunctionsPass)
    
      LiftQuantizableSpotsAsFunctionsPass() = default;
    
      // Constructor with explicit user-provided `QuantizationSpecs`.
      explicit LiftQuantizableSpotsAsFunctionsPass(
          QuantizationSpecs quantization_specs)
          : quantization_specs_(std::move(quantization_specs)) {}
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtAnalysisSession.kt

     * ```kotlin
     * fun KaSession.foo() { ... }
     * ```
     *
     * **Class context receivers** should not be used to pass analysis sessions. While a context receiver on a class will make the analysis
     * session available in the constructor, it will also be captured by the class as a property. This behavior is easy to miss and a high risk
     * for unintentional leakage. For example:
     *
     * ```kotlin
     * // DO NOT DO THIS
     * context(KaSession)
     * class Usage {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:45:26 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

                is AssignmentMethod.AsConstructed -> Unit // the value should have already been passed to the constructor or the factory function
            }
        }
    
        private
        fun getObjectByResolvedOrigin(objectOrigin: ObjectOrigin): Any? {
            return when (objectOrigin) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    					st.advance(1)
    				}
    				if len(st.str) < 1 {
    					st.fail("expected constructor type")
    				}
    				if last == nil {
    					st.fail("constructor before name is seen")
    				}
    				st.advance(1)
    				var base AST
    				if inheriting {
    					base = st.demangleType(false)
    				}
    				next = &Constructor{
    					Name: getLast(last),
    					Base: base,
    				}
    				if len(st.str) > 0 && st.str[0] == 'B' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. src/net/tcpsock_posix.go

    }
    
    func selfConnect(fd *netFD, err error) bool {
    	// If the connect failed, we clearly didn't connect to ourselves.
    	if err != nil {
    		return false
    	}
    
    	// The socket constructor can return an fd with raddr nil under certain
    	// unknown conditions. The errors in the calls there to Getpeername
    	// are discarded, but we can't catch the problem there because those
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

      private val runningAsyncCalls = ArrayDeque<AsyncCall>()
    
      /** Running synchronous calls. Includes canceled calls that haven't finished yet. */
      private val runningSyncCalls = ArrayDeque<RealCall>()
    
      constructor(executorService: ExecutorService) : this() {
        this.executorServiceOrNull = executorService
      }
    
      internal fun enqueue(call: AsyncCall) {
        this.withLock {
          readyAsyncCalls.add(call)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ScopeProvider.kt

        }
    
        private class DeclaredMemberScope(
            val allMemberScope: MemberScope,
            val owner: ClassDescriptor,
            val forDelegatedMembersOnly: Boolean
        ) : MemberScope {
            constructor(owner: ClassDescriptor, forDelegatedMembersOnly: Boolean = false) :
                    this(owner.unsubstitutedMemberScope, owner, forDelegatedMembersOnly)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

            import org.gradle.declarative.dsl.model.annotations.Restricted
            import javax.inject.Inject
    
            @Restricted
            abstract class Extension @Inject constructor(private val objects: ObjectFactory) {
                val primaryAccess: Access
                abstract val secondaryAccess: ListProperty<Access?>
    
                init {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/KtDeclarationRenderer.kt

    import org.jetbrains.kotlin.analysis.api.renderer.types.KaTypeRenderer
    import org.jetbrains.kotlin.analysis.api.symbols.*
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    
    public class KaDeclarationRenderer private constructor(
        public val nameRenderer: KaDeclarationNameRenderer,
        public val keywordsRenderer: KaKeywordsRenderer,
        public val contextReceiversRenderer: KaContextReceiversRenderer,
        public val codeStyle: KaRendererCodeStyle,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ExpressionTypeProvider.kt

                }
            }
    
            if (declaration is KtConstructor<*>) {
                val bindingContext = analysisContext.analyze(declaration)
                val kotlinType = bindingContext[BindingContext.CONSTRUCTOR, declaration]?.returnType
                    ?: ErrorUtils.createErrorType(
                        ErrorTypeKind.RETURN_TYPE_FOR_CONSTRUCTOR, declaration.containingClass()?.name ?: "<unknown>"
                    )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top