Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 163 for true (0.15 sec)

  1. .idea/runConfigurations/Generate_IR_tree.xml

    <component name="ProjectRunConfigurationManager">
      <configuration default="false" name="Generate IR tree" type="GradleRunConfiguration" factoryName="Gradle" folderName="Generators">
        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$/compiler/ir/ir.tree" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Jun 13 16:58:05 GMT 2022
    - 828 bytes
    - Viewed (0)
  2. .idea/codeStyles/Project.xml

          <option name="ALIGN_MULTILINE_TERNARY_OPERATION" value="true" />
          <option name="ALIGN_MULTILINE_THROWS_LIST" value="true" />
          <option name="ALIGN_MULTILINE_EXTENDS_LIST" value="true" />
          <option name="ALIGN_MULTILINE_PARENTHESIZED_EXPRESSION" value="true" />
          <option name="SPACE_BEFORE_ARRAY_INITIALIZER_LBRACE" value="true" />
          <option name="CALL_PARAMETERS_WRAP" value="1" />
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Tue May 02 13:36:56 GMT 2023
    - 4.1K bytes
    - Viewed (3)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

            upperBoundClasses.associateWithTo(isLeaf) { true }
            val queue = ArrayDeque(upperBoundClasses)
            while (queue.isNotEmpty()) {
                for (superClass in DescriptorUtils.getSuperclassDescriptors(queue.removeFirst())) {
                    when (isLeaf[superClass]) {
                        true -> isLeaf[superClass] = false
                        false -> {}
                        else -> {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Jan 29 09:37:59 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  4. .idea/runConfigurations/Generate_FIR_Checker_Components_and_FIR_IDE_Diagnostics.xml

            </list>
          </option>
          <option name="vmOptions" value="" />
        </ExternalSystemSettings>
        <ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
        <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
        <DebugAllEnabled>false</DebugAllEnabled>
        <method v="2" />
      </configuration>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Wed Sep 22 13:47:13 GMT 2021
    - 1.1K bytes
    - Viewed (0)
  5. .idea/runConfigurations/Generate_MPP_Tests.xml

              <option value="generateKpmTests" />
            </list>
          </option>
          <option name="vmOptions" />
        </ExternalSystemSettings>
        <ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
        <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
        <DebugAllEnabled>false</DebugAllEnabled>
        <method v="2" />
      </configuration>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Aug 12 10:34:14 GMT 2022
    - 1001 bytes
    - Viewed (0)
  6. .idea/runConfigurations/Generate_standard_library_sources.xml

              <option value="run" />
            </list>
          </option>
          <option name="vmOptions" value="" />
        </ExternalSystemSettings>
        <ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
        <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
        <DebugAllEnabled>false</DebugAllEnabled>
        <method v="2" />
      </configuration>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Sun Jun 26 18:29:57 GMT 2022
    - 989 bytes
    - Viewed (0)
  7. .idea/runConfigurations/Analysis_API_FIR_Tests.xml

        </ExternalSystemSettings>
        <ExternalSystemDebugServerProcess>false</ExternalSystemDebugServerProcess>
        <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
        <DebugAllEnabled>false</DebugAllEnabled>
        <RunAsTest>true</RunAsTest>
        <method v="2" />
      </configuration>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Wed Jan 03 13:39:42 GMT 2024
    - 1K bytes
    - Viewed (0)
  8. .idea/runConfigurations/Low_Level_API_FIR_Lincheck_Tests.xml

        </ExternalSystemSettings>
        <ExternalSystemDebugServerProcess>false</ExternalSystemDebugServerProcess>
        <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
        <DebugAllEnabled>false</DebugAllEnabled>
        <RunAsTest>true</RunAsTest>
        <method v="2" />
      </configuration>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Mar 01 17:29:07 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/signatures/KtFe10VariableLikeSignature.kt

            if (this === other) return true
            if (javaClass != other?.javaClass) return false
    
            other as KtFe10VariableLikeSignature<*>
    
            if (backingSymbol != other.backingSymbol) return false
            if (backingReturnType != other.backingReturnType) return false
            if (backingReceiverType != other.backingReceiverType) return false
    
            return true
        }
    
        override fun hashCode(): Int {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ExpressionTypeProvider.kt

            if (bindingContext[BindingContext.SMARTCAST_NULL, expression] == true) {
                return true
            }
    
            for (diagnostic in bindingContext.diagnostics.forElement(unwrapped)) {
                if (diagnostic.factory == Errors.ALWAYS_NULL) {
                    return true
                }
            }
    
            return false
        }
    
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Tue Oct 24 20:59:56 GMT 2023
    - 15.5K bytes
    - Viewed (0)
Back to top