Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 129 for Ide (0.21 sec)

  1. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

        checkPublicSuffix("kyoto.jp", null)
        checkPublicSuffix("test.kyoto.jp", "test.kyoto.jp")
        checkPublicSuffix("ide.kyoto.jp", null)
        checkPublicSuffix("b.ide.kyoto.jp", "b.ide.kyoto.jp")
        checkPublicSuffix("a.b.ide.kyoto.jp", "b.ide.kyoto.jp")
        checkPublicSuffix("c.kobe.jp", null)
        checkPublicSuffix("b.c.kobe.jp", "b.c.kobe.jp")
        checkPublicSuffix("a.b.c.kobe.jp", "b.c.kobe.jp")
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  2. .cm/platform_labels.cm

      - core_runtime:
        name: 'core_runtime'
      - documentation:
        name: 'documentation'
      - enterprise:
        name: 'enterprise'
      - extensibility:
        name: 'extensibility'
      - ide:
        name: 'ide'
      - jvm:
        name: 'jvm'
      - native:
        name: 'native'
      - software:
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Apr 22 15:32:31 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  3. maven-core/plugin-manager.txt

    h3. Resolving the dependencies of a plugin
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/annotations/Fe10IdeNormalAnalysisSourceModuleAnalysisApiAnnotationsOnFilesTestGenerated.java

          new AnalysisApiTestConfiguratorFactoryData(
            FrontendKind.Fe10,
            TestModuleKind.Source,
            AnalysisSessionMode.Normal,
            AnalysisApiMode.Ide
          )
        );
      }
    
      @Test
      public void testAllFilesPresentInAnnotationsOnFiles() {
    Java
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Feb 27 20:30:06 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  5. .cm/summary_table.cm

          - 'subprojects/plugin-use/'
          - 'subprojects/test-kit/'
      - gradle_enterprise:
        name: 'gradle_enterprise'
        subprojects:
          - 'platforms/enterprise/'
      - ide:
        name: 'ide'
        subprojects:
          - 'platforms/ide/'
      - jvm:
        name: 'jvm'
        subprojects:
          - 'platforms/jvm/'
          - 'subprojects/plugins/'
      - kotlin_dsl:
        name: 'kotlin_dsl'
        subprojects:
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Feb 08 15:20:44 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.integrationtests.ide/*
     * Copyright 2023 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Dec 22 13:46:27 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java

    import org.apache.maven.repository.Proxy;
    
    /**
     * Abstraction of an artifact repository. Artifact repositories can be remote, local, or even build reactor or
     * IDE workspace.
     *
     * @deprecated Avoid use of this type, if you need access to local repository use repository system classes instead.
     */
    @Deprecated
    public interface ArtifactRepository {
        String pathOf(Artifact artifact);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Feb 23 17:14:45 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/pointers/KtFe10DescEnumEntrySymbolPointer.kt

            val entryDescriptor = analysisContext.resolveSession.moduleDescriptor.findClassAcrossModuleDependencies(classId)
                ?.unsubstitutedMemberScope
                ?.getContributedClassifier(entryName, NoLookupLocation.FROM_IDE)
    
            if (entryDescriptor is ClassDescriptor && entryDescriptor.kind == ClassKind.ENUM_ENTRY) {
                return KtFe10DescEnumEntrySymbol(entryDescriptor, analysisContext)
            }
    
            return null
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Jan 02 20:00:49 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  9. docs/id/docs/tutorial/index.md

    kamu baca sekarang).
    
    Hal ini dirancang supaya kamu dapat membangun aplikasi lengkap dengan hanya **Tutorial - Pedoman Pengguna**, dan kemudian mengembangkannya ke banyak cara yang berbeda, tergantung dari kebutuhanmu, menggunakan beberapa ide-ide tambahan dari **Pedoman Pengguna Lanjutan**....
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineDelegatedPropertyAccessorsAnalyzer.kt

        // and if a containing delegated property accessor is inline,
        // it might need this accessor's bytecode.
        //
        // If an accessor function is defined in a different module,
        // IDE tries to acquire its bytecode via the index, however,
        // the index doesn't cover classfiles from compiler output,
        // so the lowering fails.
        //
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Aug 29 23:55:31 GMT 2023
    - 3.6K bytes
    - Viewed (0)
Back to top