Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 76 for substituted (0.22 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaConstructorSymbol
    import org.jetbrains.kotlin.name.Name
    
    /**
     * A scope inside which use-site type-parameters of callable declarations may be substituted. Such declarations are represented as [KaCallableSignature].
     *
     * @see org.jetbrains.kotlin.analysis.api.components.KaScopeProviderMixIn.getTypeScope
     * @see KaCallableSignature
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

                buildFile << """
                    apply plugin: 'java-library'
                """
            }
        }
    
        def "EclipseProject model has closed project dependencies substituted in composite"() {
            setup:
            def workspace = eclipseWorkspace([project("buildA", buildA),
                                              project("buildB", buildB),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/DependencyLockingGraphVisitor.java

                    new LockOutOfDateException("Did not resolve '" + forcedModule.getDisplayName() + "' which has been forced / substituted to a different version: '" + entry.getValue() + "'")));
            }
            return completedFailures;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. ci/official/utilities/setup_macos.sh

    if [[ -n "$(which grealpath)" ]] &&  [[ -n "$(which gstat)" ]]; then
      alias realpath=grealpath
      alias stat=gstat
      # By default, aliases are only expanded in interactive shells, which means
      # that they are not substituted for their corresponding commands in shell
      # scripts. By setting "expand_aliases", we enable alias expansion in
      # non-interactive shells as well.
      shopt -s expand_aliases
    else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

            failures.size() == 1
            failures.each {
                assert it.problem instanceof LockOutOfDateException
                assert it.problem.message.contains("Did not resolve 'org:foo:1.1' which has been forced / substituted to a different version: '1.0'")
            }
        }
    
        def 'invokes locking provider on writeLocks with visited modules'() {
            given:
            def identifier = newId(mid, '1.1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/unicode/utf16/utf16_test.go

    	r1, r2 rune
    	want   rune
    }{
    	{0xd800, 0xdc00, 0x10000},
    	{0xd800, 0xdc01, 0x10001},
    	{0xd808, 0xdf45, 0x12345},
    	{0xdbff, 0xdfff, 0x10ffff},
    	{0xd800, 'a', 0xfffd}, // illegal, replacement rune substituted
    }
    
    func TestDecodeRune(t *testing.T) {
    	for i, tt := range decodeRuneTests {
    		got := DecodeRune(tt.r1, tt.r2)
    		if got != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    func (t Tag) IsRoot() bool {
    	if t.full != nil {
    		return t.full.IsRoot()
    	}
    	return t.language == _und
    }
    
    // Parent returns the CLDR parent of t. In CLDR, missing fields in data for a
    // specific language are substituted with fields from the parent language.
    // The parent for a language may change for newer versions of CLDR.
    func (t Tag) Parent() Tag {
    	if t.full != nil {
    		return Make(t.full.Parent())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/signatures/KtFe10FunctionLikeSignature.kt

        override fun substitute(substitutor: KaSubstitutor): KaFunctionLikeSignature<S> = withValidityAssertion {
            KaFe10FunctionLikeSignature(
                symbol,
                substitutor.substitute(returnType),
                receiverType?.let { substitutor.substitute(it) },
                valueParameters.map { valueParameter ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/components/AbstractKtSignatureSubstitutor.kt

        override fun <S : KaFunctionLikeSymbol> substitute(symbol: S, substitutor: KaSubstitutor): KaFunctionLikeSignature<S> {
            if (substitutor is KaSubstitutor.Empty) return asSignature(symbol)
            return asSignature(symbol).substitute(substitutor)
        }
    
        override fun <S : KaVariableLikeSymbol> substitute(symbol: S, substitutor: KaSubstitutor): KaVariableLikeSignature<S> {
            if (substitutor is KaSubstitutor.Empty) return asSignature(symbol)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/signatures/KtFirVariableLikeSignature.kt

        override fun substitute(substitutor: KaSubstitutor): KaFirVariableLikeSignature<S> = withValidityAssertion {
            if (substitutor is KaSubstitutor.Empty) return@withValidityAssertion this
            require(substitutor is AbstractKaFirSubstitutor<*>)
    
            KaFirVariableLikeSubstitutorBasedSignature(token, firSymbol, firSymbolBuilder, substitutor.substitutor)
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top