Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 151 for oregon (0.06 sec)

  1. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/DetermineBaselines.kt

        fun forkPointCommitBaseline(): String {
            val source = tryGetUpstream() ?: "origin"
            project.execAndGetStdout("git", "fetch", source, "master", "release")
            val masterForkPointCommit = project.execAndGetStdout("git", "merge-base", "origin/master", "HEAD")
            val releaseForkPointCommit = project.execAndGetStdout("git", "merge-base", "origin/release", "HEAD")
            val forkPointCommit =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

            return when (symbol.origin) {
                KaSymbolOrigin.SOURCE_MEMBER_GENERATED -> true
                else -> false
            }
        }
    
        private fun isOrdinarySymbolWithSource(symbol: KaSymbol): Boolean {
            return symbol.origin == KaSymbolOrigin.SOURCE
                    || symbol.firSymbol.fir.origin == FirDeclarationOrigin.ScriptCustomization.ResultProperty
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirJavaDeclaredMembersOnlyScope.kt

            }
        }
    
        private fun FirCallableDeclaration.isDeclared(): Boolean =
            symbol.callableId.classId == owner.classId
                    && origin !is FirDeclarationOrigin.SubstitutionOverride
                    && origin != FirDeclarationOrigin.IntersectionOverride
    
        private fun FirRegularClass.isDeclared(): Boolean = symbol.classId.parentClassId == owner.classId
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/annotationWithVararg.ir.txt

        FUN name:test visibility:public modality:FINAL <> () returnType:kotlin.Unit
          BLOCK_BODY
            VAR name:x type:kotlin.Int [val]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Feb 29 06:44:05 UTC 2024
    - 577 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_download_git_bareRepository.txt

    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    env GOPRIVATE=vcs-test.golang.org
    
    go mod download -x
    
    -- go.mod --
    module test
    
    go 1.18
    
    require vcs-test.golang.org/git/gitrepo1.git v1.2.3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 597 bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionApplicationHandler.kt

     * the given [targetBaseReceiver].
     */
    private
    class ConventionTransformer(
        private val targetBaseReceiver: ObjectOrigin.ReceiverOrigin
    ) {
        fun transfer(origin: ObjectOrigin) = replaceReceivers(origin, ::isConventionsCall, targetBaseReceiver)
    
        fun applyAssignmentConventions(
            referencedSoftwareTypes: List<SoftwareTypeConventionResolutionResults>
        ): List<AssignmentRecord> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/firUtils.kt

     */
    internal fun FirCallableSymbol<*>.computeImportableName(useSiteSession: FirSession): FqName? {
        if (callableId.isLocal) return null
    
        // SAM constructors are synthetic, but can be imported
        if (origin is FirDeclarationOrigin.SamConstructor) return callableId.asSingleFqName()
    
        // if classId == null, callable is topLevel
        val containingClassId = callableId.classId
            ?: return callableId.asSingleFqName()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/KtFe10DescSymbol.kt

                    ?: KtFe10ReferenceResolutionHelper.getInstance()
                        ?.findDecompiledDeclaration(analysisContext.resolveSession.project, descriptor, null)
            }
    
        override val origin: KaSymbolOrigin
            get() = withValidityAssertion { descriptor.getSymbolOrigin(analysisContext) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_sum_mismatch.txt

    	$WORK${/}gopath${/}src${/}a${/}go.sum:     h1:U1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
    
    SECURITY ERROR
    This download does NOT match an earlier download recorded in go.sum.
    The bits may have been replaced on the origin server, or an attacker may
    have intercepted the download attempt.
    
    For more information, see 'go help module-auth'.
    -- go.work --
    go 1.18
    
    use ./a
    use ./b
    -- a/go.mod --
    go 1.18
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/symbolTestUtils.kt

    import org.jetbrains.kotlin.test.services.assertions
    
    internal fun KaSession.checkContainingFileSymbol(
        ktFileSymbol: KaFileSymbol,
        symbol: KaSymbol,
        testServices: TestServices
    ) {
        if (symbol.origin != KaSymbolOrigin.SOURCE) return
        val containingFileSymbol = symbol.getContainingFileSymbol()
        testServices.assertions.assertEquals(ktFileSymbol, containingFileSymbol) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top