Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for biases (0.17 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtTypeMappingMode.kt

    package org.jetbrains.kotlin.analysis.api.types
    
    public enum class KaTypeMappingMode {
        /**
         * kotlin.Int is mapped to I
         */
        DEFAULT,
    
        /**
         * kotlin.Int is mapped to I
         * Type aliases are mapped to their expanded form
         */
        DEFAULT_UAST,
    
        /**
         * kotlin.Int is mapped to Ljava/lang/Integer;
         */
        GENERIC_ARGUMENT,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-settings/groovy/build.gradle

    dependencies {
        implementation libs.bundles.groovy
    }
    // end::use_dependency_bundle[]
    
    // tag::type_unsafe_access[]
    def versionCatalog = versionCatalogs.named("libs")
    println "Library aliases: ${versionCatalog.libraryAliases}"
    dependencies {
        versionCatalog.findLibrary("groovy-json").ifPresent {
            implementation(it)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 11:03:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    	"golang.org/x/tools/go/ast/inspector"
    	"golang.org/x/tools/internal/aliases"
    	"golang.org/x/tools/internal/typeparams"
    )
    
    //go:embed doc.go
    var doc string
    
    var Analyzer = &analysis.Analyzer{
    	Name:     "stringintconv",
    	Doc:      analysisutil.MustExtractDoc(doc, "stringintconv"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationIndex.kt

         */
        internal val classesBySupertypeName: MutableMap<Name, MutableSet<KtClassOrObject>> = mutableMapOf()
    
        /**
         * Maps a simple name `N` to type aliases `A` in whose definition `N` occurs as the topmost user type, which is a prerequisite for other
         * classes inheriting from `N` by referring to `A`. Does not support function types (e.g. `Function1`).
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/resources/META-INF/analysis-api/analysis-api-impl-base.xml

            serviceImplementation="org.jetbrains.kotlin.analysis.api.impl.base.java.source.JavaElementSourceWithSmartPointerFactory"
        />
    
        <projectService
            serviceInterface="org.jetbrains.kotlin.psi.KotlinReferenceProvidersService"
            serviceImplementation="org.jetbrains.kotlin.analysis.api.impl.base.references.HLApiReferenceProviderService"
        />
    
        <projectService
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    	default:
    		return fmt.Sprintf("%5.2g%%", ratio)
    	}
    }
    
    // Unit includes a list of aliases representing a specific unit and a factor
    // which one can multiple a value in the specified unit by to get the value
    // in terms of the base unit.
    type Unit struct {
    	CanonicalName string
    	aliases       []string
    	Factor        float64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go122.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build go1.22
    // +build go1.22
    
    package aliases
    
    import (
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"go/types"
    )
    
    // Alias is an alias of types.Alias.
    type Alias = types.Alias
    
    // Rhs returns the type on the right-hand side of the alias declaration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/qualifiers/UsualClassTypeQualifierBuilder.kt

            return when (declaration) {
                is FirAnonymousObject -> listOf(declaration)
                is FirRegularClass -> declaration.collectForLocal()
                is FirTypeAlias -> listOf(declaration) // TODO: handle type aliases
                else -> errorWithAttachment("Invalid declaration ${declaration::class}") {
                    withFirEntry("declaration", declaration)
                }
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

         *
         * @see KaResolveExtensionFile
         */
        public abstract fun getFilePackageName(): FqName
    
        /**
         * Returns the set of top-level classifier (classes, interfaces, objects, and type-aliases) names in the file.
         *
         * The result may have false-positive entries but cannot have false-negative entries. It should contain all the names in the package but may have some additional names that are not there.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/resources/META-INF/analysis-api/analysis-api-fir-standalone-base.xml

        <projectService
            serviceInterface="org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinDirectInheritorsProvider"
            serviceImplementation="org.jetbrains.kotlin.analysis.api.standalone.base.declarations.KotlinStandaloneFirDirectInheritorsProvider"
        />
      </extensions>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 484 bytes
    - Viewed (0)
Back to top