Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for sizeclass (0.68 sec)

  1. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/symbolDeclarationOverridesProvider/FirIdeNormalAnalysisSourceModuleIsSubclassOfTestGenerated.java

      }
    
      @Test
      @TestMetadata("sameClass.kt")
      public void testSameClass() {
        runTest("analysis/analysis-api/testData/components/symbolDeclarationOverridesProvider/isSubclassOf/sameClass.kt");
      }
    
      @Test
      @TestMetadata("unrelatedClass.kt")
      public void testUnrelatedClass() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 13 16:31:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/symbolDeclarationOverridesProvider/FirStandaloneNormalAnalysisSourceModuleIsSubclassOfTestGenerated.java

      }
    
      @Test
      @TestMetadata("sameClass.kt")
      public void testSameClass() {
        runTest("analysis/analysis-api/testData/components/symbolDeclarationOverridesProvider/isSubclassOf/sameClass.kt");
      }
    
      @Test
      @TestMetadata("unrelatedClass.kt")
      public void testUnrelatedClass() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 13 16:31:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

            // Make the classpath of :foo differ from :bar's
            // thus causing :foo:foo and :bar:bar to have separate ClassLoaders.
            File someLib = file('lib/someLib.jar')
            jarWithClasses(someLib, SomeClass: 'class SomeClass {}')
    
            file("foo/build.gradle") << """
                buildscript { dependencies { classpath(files('${someLib.toURI()}')) } }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/crossVersionTest/groovy/org/gradle/api/internal/tasks/compile/tooling/JavaCompileTaskOperationResultCrossVersionTest.groovy

                dependencies {
                    compileOnly project(':processor')
                    annotationProcessor project(':processor')
                }
            """
            file("src/main/java/SomeClass.java") << """
                @Helper class SomeClass {}
            """
            def processorProjectDir = file("processor")
            def fixture = new HelperProcessorFixture()
            fixture.writeApiTo(processorProjectDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/test/SomeOtherClass.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile.incremental.test;
    
    public class SomeOtherClass extends SomeClass {
    
        void foo() {
            System.out.println(new YetAnotherClass());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 807 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/ClassIterator.java

    /**
     * クラスの継承階層を親クラスに向かって反復する{@link Iterator}です。
     * <p>
     * 次のように使います.
     * </p>
     *
     * <pre>
     * import static org.codelibs.core.lang.ClassIterator.*;
     *
     * Class&lt;?&gt; someClass = ...;
     * for (Class&lt;?&gt; clazz : iterable(someClass)) {
     *     ...
     * }
     * </pre>
     * <p>
     * デフォルトでは{@link Object}クラスも反復の対象となります。 反復の対象に{@link Object}を含めたくない場合は、
     * {@link #iterable(Class, boolean)}または{@link #ClassIterator(Class, boolean)}
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/TestUtil.java

         * のインスタンスかを検証されてしまうのでこれが必要。
         *
         * @param clazz
         *            期待するクラス
         * @return クラスをチェックする{@link Matcher}
         */
        public static Matcher<Object> sameClass(final Class<?> clazz) {
            return is((Object) clazz);
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            failingTestDetails.assertDuration("1.000s")
            failingTestDetails.assertFailed()
    
            failingClassFile.assertHasFailure('failed', 'something failed\n\nthis is the failure\nat someClass\n')
    
            where:
            numThreads << [1, 4]
        }
    
        def "aggregate same tests run with different results - #numThreads parallel thread(s)"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

        /**
         * Returns the display granularity of the events to be logged. For example, if set to 0, a method-level event will be displayed as "Test Run &gt; Test Worker x &gt; org.SomeClass &gt; org.someMethod". If
         * set to 2, the same event will be displayed as "org.someClass &gt; org.someMethod". <p>-1 denotes the highest granularity and corresponds to an atomic test.
         *
         * @return the display granularity of the events to be logged
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                }
            }
        }
    
        def "Can handle a published platform dependency that is resolved to a local platform project"() {
            given:
            file("src/main/java/SomeClass.java") << "public class SomeClass {}"
            platformModule('')
            mavenHttpRepo.module("org.test", "platform", "1.9").asGradlePlatform().publish()
            def moduleA = mavenHttpRepo.module("org.test", "b", "1.9").withModuleMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top