Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 82 for Classes (0.25 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         *
         * Example:
         *   class Outer { // scope1  ClassId = Other
         *     class Inner { // scope2  ClassId = Other.Inner
         *       fun foo() {
         *         // Distance to scopes for classes from <element> in the order from the closest:
         *         //   scope2 -> scope3 -> scope1
         *         <element>
         *       }
         *       companion object { // scope3  ClassId = Other.Inner.Companion
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    For example, if you create a task that packages the compiled classes of a Java application,  you should use an implementation similar to this:
    
    ====
    include::sample[dir="snippets/files/sampleJavaProject/kotlin",files="build.gradle.kts[tags=link-task-properties]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            assertThat(annotation.number(), equalTo(1));
            assertThat(annotation.numbers(), equalTo(new int[]{1, 2}));
            assertThat(annotation.clazz().equals(Integer.class), equalTo(true));
            assertThat(annotation.classes(), equalTo(new Class<?>[]{Integer.class}));
            assertThat(annotation.annotation().value(), equalTo("nested"));
            assertThat(annotation.annotations()[0].value(), equalTo("nested array"));
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * international domain names work everywhere. For example, "σ" encodes as "xn--4xa". The encoded
     * string is not human readable, but can be used with classes like [InetAddress] to establish
     * connections.
     *
     * ## Why another URL model?
     *
     * Java includes both [java.net.URL][URL] and [java.net.URI][URI]. We offer a new URL
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    }
    
                    // Set the context classloader to the bootstrap classloader, to work around how JAXP locates implementation classes
                    // This should ensure that the JAXP classes provided by the JVM are used, rather than some other implementation
                    ClassLoader original = Thread.currentThread().getContextClassLoader();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    image::configuration-cache/problems-report.png[]
    
    The report displays the set of problems twice.
    First grouped by problem message, then grouped by task.
    The former allows you to quickly see what classes of problems your build is facing.
    The latter allows you to quickly see which tasks are problematic.
    In both cases you can expand the tree in order to discover where the culprit is in the object graph.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   ...
    //   // The thread_can_start parameter is optional; you can supply NULL.
    //   ThreadWithParam<int> thread(&ThreadFunc, 5, &thread_can_start);
    //   thread_can_start.Notify();
    //
    // These classes are only for testing Google Test's own constructs. Do
    // not use them in user tests, either directly or indirectly.
    template <typename T>
    class ThreadWithParam : public ThreadWithParamBase {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   ...
    //   // The thread_can_start parameter is optional; you can supply NULL.
    //   ThreadWithParam<int> thread(&ThreadFunc, 5, &thread_can_start);
    //   thread_can_start.Notify();
    //
    // These classes are only for testing Google Test's own constructs. Do
    // not use them in user tests, either directly or indirectly.
    template <typename T>
    class ThreadWithParam : public ThreadWithParamBase {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    `-Xjvm-default=all`::
    Makes all non-abstract members of Kotlin interfaces default for the Java classes implementing them.
    This is to provide a better interoperability with Java and Groovy for plugins written in Kotlin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(
                    new File(pom.getBasedir(), "target/classes"),
                    new File(pom.getValue("properties/buildMainOut").toString()));
            assertEquals(
                    new File(pom.getBasedir(), "target/test-classes"),
                    new File(pom.getValue("properties/buildTestOut").toString()));
            assertEquals(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
Back to top