Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,161 for rclass (0.14 sec)

  1. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/DefaultSerializerRegistrySpec.groovy

        static class Serializable7 extends SerializableParent {}
    
        static class Serializable8 extends SerializableParent {}
    
        static class Serializable9 extends SerializableParent {}
    
        static class Serializable10 extends SerializableParent {}
    
        static class Serializable11 extends SerializableParent {}
    
        static class Serializable12 extends SerializableParent {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. .idea/inspectionProfiles/idea_default.xml

        <inspection_tool class="CastToIncompatibleInterface" enabled="true" level="WARNING" enabled_by_default="true" />
        <inspection_tool class="ChainedEquality" enabled="false" level="WARNING" enabled_by_default="true" />
        <inspection_tool class="ClassNameSameAsAncestorName" enabled="true" level="WARNING" enabled_by_default="true" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 09 20:59:03 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  3. android/guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

            BlockingDeque.class,
            PriorityBlockingQueue.class,
            DelayQueue.class,
            SynchronousQueue.class,
            ConcurrentMap.class,
            ConcurrentNavigableMap.class,
            AtomicReference.class,
            AtomicBoolean.class,
            AtomicInteger.class,
            AtomicLong.class,
            AtomicDouble.class);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

    import spock.lang.Issue
    
    abstract class AbstractCrossTaskIncrementalCompilationIntegrationTest extends AbstractCrossTaskIncrementalCompilationSupport {
    
        def "detects change to dependency and ensures class dependency info refreshed"() {
            source api: ["class A {}", "class B extends A {}"]
            source impl: ["class SomeImpl {}", "class ImplB extends B {}", "class ImplB2 extends ImplB {}"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/advance.jsp

    						<span class="navbar-toggler-icon"></span>
    					</button>
    					<div class="collapse navbar-collapse" id="navbar">
    						<div class="mr-auto"></div>
    						<ul class="nav navbar-nav">
    							<c:if test="${eoled}">
    								<li class="nav-item" data-toggle="tooltip" data-placement="left" title="<la:message key="labels.eol_error" />">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/maintenance/admin_maintenance.jsp

                                <div class="card-header">
                                    <h3 class="card-title">
                                        <la:message key="labels.upgrade_reindex"/>
                                    </h3>
                                </div>
                                <div class="card-body">
                                    <div class="form-group row">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-not-extends-internal-types.txt

    Class <org.gradle.api.tasks.Upload> extends/implements org.gradle.api.internal.ConventionTask that is Gradle Internal API in (Upload.java:0)
    Class <org.gradle.api.tasks.ant.AntTarget> extends/implements org.gradle.api.internal.ConventionTask that is Gradle Internal API in (AntTarget.java:0)
    Class <org.gradle.api.tasks.compile.GroovyCompile> extends/implements org.gradle.api.internal.tasks.compile.HasCompileOptions that is Gradle Internal API in (GroovyCompile.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java

        @SuppressWarnings("unchecked")
        Class<WillBeUnloadedException> shadowClass =
            (Class<WillBeUnloadedException>)
                Class.forName(WillBeUnloadedException.class.getName(), false, shadowLoader);
        assertNotSame(shadowClass, WillBeUnloadedException.class);
        getChecked(immediateFuture("foo"), shadowClass);
        return new WeakReference<>(shadowLoader);
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java

        @SuppressWarnings("unchecked")
        Class<WillBeUnloadedException> shadowClass =
            (Class<WillBeUnloadedException>)
                Class.forName(WillBeUnloadedException.class.getName(), false, shadowLoader);
        assertNotSame(shadowClass, WillBeUnloadedException.class);
        getChecked(immediateFuture("foo"), shadowClass);
        return new WeakReference<>(shadowLoader);
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

            ], impl: [
                // cases where it's relevant, ABI-wise
                "class X {}",
                "@B(A.CST) class OnClass {}",
                "class OnMethod { @B(A.CST) void foo() {} }",
                "class OnField { @B(A.CST) String foo; }",
                "class OnParameter { void foo(@B(A.CST) int x) {} }",
                "class InMethodBody { void foo(int x) { @B(A.CST) int value = 5; } }",
            ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
Back to top