Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 144 for isCall (0.89 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescSyntheticJavaPropertySymbolForOverride.kt

            get() = withValidityAssertion { descriptor.isExplicitOverride }
    
        override val isStatic: Boolean
            get() = withValidityAssertion { DescriptorUtils.isStaticDeclaration(descriptor) }
    
        override val isVal: Boolean
            get() = withValidityAssertion { !descriptor.isVar }
    
        override val isExtension: Boolean
            get() = withValidityAssertion { descriptor.isExtension }
    
        override val getter: KaPropertyGetterSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

            }
            is KaValueParameterSymbol -> "${if (isVararg) "vararg " else ""}$name: ${returnType.render()}"
            is KaTypeParameterSymbol -> this.nameOrAnonymous.asString()
            is KaVariableSymbol -> "${if (isVal) "val" else "var"} $name: ${returnType.render()}"
            is KaClassLikeSymbol -> classId?.toString() ?: nameOrAnonymous.asString()
            is KaPackageSymbol -> fqName.toString()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

                return symbol.javaSetterSymbol?.name
            }
    
            val firProperty = symbol.firSymbol.fir
            requireIsInstance<FirProperty>(firProperty)
    
            if (firProperty.isVal) return null
    
            return getJvmName(firProperty, isSetter = true)
        }
    
        override fun getAnnotationApplicableTargets(symbol: KaClassOrObjectSymbol): Set<KotlinTarget>? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    		isNull := false
    
    		if testO != "" {
    			target = testO
    
    			if testODir {
    				if filepath.IsAbs(target) {
    					target = filepath.Join(target, testBinary+cfg.ExeSuffix)
    				} else {
    					target = filepath.Join(base.Cwd(), target, testBinary+cfg.ExeSuffix)
    				}
    			} else {
    				if base.IsNull(target) {
    					isNull = true
    				} else if !filepath.IsAbs(target) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_ru.properties

    labels.plugin_type=Type
    labels.plugin_name=Name
    labels.plugin_version=Version
    labels.plugin_delete=Delete
    labels.plugin_install=Install
    labels.plugin_install_title=Install Plugin
    labels.plugin_jar_file=Jar File
    labels.plugin_local_install=Local
    labels.plugin_remote_install=Remote
    labels.crud_button_install=Install
    labels.storage_configuration=Storage
    labels.storage_name=Name
    labels.storage_size=Size
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/clean/clean.go

    directory, and MAINFILE is the base name of any Go source
    file in the directory that is not included when building
    the package.
    
    The -i flag causes clean to remove the corresponding installed
    archive or binary (what 'go install' would create).
    
    The -n flag causes clean to print the remove commands it would execute,
    but not run them.
    
    The -r flag causes clean to be applied recursively to all the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

        private fun FirPropertySymbol.toLiteralExpression(): FirLiteralExpression? {
            return if (isConst && isVal) {
                withTrackingVariableEvaluation(this) { evaluate(resolvedInitializer) }
            } else null
        }
    
        private fun FirFieldSymbol.toLiteralExpression(): FirLiteralExpression? {
            return if (isStatic && isFinal && isVal) {
                withTrackingVariableEvaluation(this) { evaluate(resolvedInitializer) }
            } else null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_en.properties

    labels.plugin_type=Type
    labels.plugin_name=Name
    labels.plugin_version=Version
    labels.plugin_delete=Delete
    labels.plugin_install=Install
    labels.plugin_install_title=Install Plugin
    labels.plugin_jar_file=Jar File
    labels.plugin_local_install=Local
    labels.plugin_remote_install=Remote
    labels.crud_button_install=Install
    labels.storage_configuration=Storage
    labels.storage_name=Name
    labels.storage_size=Size
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

            ImmutableSortedSet.copyOf(new String[] {"e", "e", "f", "b", "i", "d", "c", "k"});
        assertThat(set.floor("a")).isNull();
      }
    
      public void testCeiling_emptySet() {
        ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(new String[] {});
        assertThat(set.ceiling("f")).isNull();
      }
    
      public void testCeiling_elementPresent() {
        ImmutableSortedSet<String> set =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    maven-plugin-api\target maven-plugin-api-2.0 maven-release-plugin https://svn.apache.org/repos/asf/maven/components/tags maven-clean-plugin 2.0-rc2-SNAPSHOT maven-compiler-plugin 2.0-beta-2-SNAPSHOT maven-deploy-plugin 2.0-beta-1 true true maven-install-plugin 2.0-beta-2-SNAPSHOT maven-jar-plugin 2.0-rc2-SNAPSHOT maven-javadoc-plugin 2.0-beta-2-SNAPSHOT attach-javadocs jar true maven-resources-plugin 2.0-beta-2 maven-source-plugin 2.0-rc1 attach-sources jar true maven-surefire-plugin 2.0-beta-2-SNAPSHOT...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top