Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,228 for eqclass (0.21 sec)

  1. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ModelType.java

            @SuppressWarnings("unchecked") Class<T> clazz = (Class<T>) instance.getClass();
            return of(clazz);
        }
    
        public static ModelType<?> of(Type type) {
            return Simple.typed(type);
        }
    
        /**
         * Returns true if this type represents a class.
         */
        public boolean isClass() {
            return wrapper instanceof ClassTypeWrapper;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. maven-core/src/site/resources/design/2.1-lifecycle-refactor-class-diagram.png

    2.1-lifecycle-refactor-class-diagram.png...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Mar 20 21:40:59 UTC 2007
    - 37.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginManager.java

        @Override
        public <P extends Plugin> P addImperativePlugin(PluginImplementation<P> plugin) {
            doApply(plugin);
            Class<? extends P> pluginClass = plugin.asClass();
            return pluginClass.cast(instances.get(pluginClass));
        }
    
        @Override
        public <P extends Plugin> P addImperativePlugin(Class<P> type) {
            return addImperativePlugin(pluginRegistry.inspect(type));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

                assert jar.getJarEntry('org/gradle/MyClass.class')
                assert jar.getJarEntry('java/lang/String.class')
                assert jar.getJarEntry('javax/inject/Inject.class')
                assert jar.getJarEntry('groovy/util/XmlSlurper.class')
                assert jar.getJarEntry('groovyjarjarantlr/TokenStream.class')
                assert jar.getJarEntry('net/rubygrapefruit/platform/FileInfo.class')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/TestSchema.kt

    import org.gradle.declarative.dsl.model.annotations.Restricted
    
    
    class MyClass {
        @get:Restricted
        lateinit var my: MyClass
    }
    
    
    class TopLevel {
        @Adding
        fun my1(): MyClass = MyClass()
    
        @Adding
        fun my2(): MyClass = MyClass()
    
        @Adding
        fun my(configure: MyClass.() -> Unit) = MyClass().also(configure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 443 bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            assertWatchableHierarchies([ImmutableSet.of(consumer, includedBuild)] * expectedWatchableCount)
            when:
            includedBuild.file("src/main/java/NewClass.java")  << "public class NewClass {}"
            withWatchFs().run("assemble")
            then:
            executedAndNotSkipped(":includedBuild:jar")
        }
    
        def "works with GradleBuild task"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

     * @since 3.5
     */
    public abstract class TypeOf<T> {
    
        /**
         * Creates an instance of {@literal TypeOf} for the given {@literal Class}.
         *
         * @param type the {@literal Class}
         * @param <T> the parameterized type of the given {@literal Class}
         * @return the {@literal TypeOf} that captures the generic type of the given {@literal Class}
         */
        public static <T> TypeOf<T> typeOf(Class<T> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisScriptSourceModuleResolveCandidatesTestGenerated.java

      @Nested
      @TestMetadata("analysis/analysis-api/testData/components/resolver/singleByPsi/arrayAccess")
      @TestDataPath("$PROJECT_ROOT")
      public class ArrayAccess {
        @Test
        public void testAllFilesPresentInArrayAccess() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/resolver/singleByPsi/arrayAccess"), Pattern.compile("^(.+)\\.kts$"), null, true);
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/dataFlowInfoProvider/FirIdeDependentAnalysisScriptSourceModuleExitPointSnapshotTestGenerated.java

        KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot"), Pattern.compile("^(.+)\\.kts$"), null, true);
      }
    
      @Nested
      @TestMetadata("analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow")
      @TestDataPath("$PROJECT_ROOT")
      public class ControlFlow {
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/dataFlowInfoProvider/FirIdeNormalAnalysisScriptSourceModuleExitPointSnapshotTestGenerated.java

        KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot"), Pattern.compile("^(.+)\\.kts$"), null, true);
      }
    
      @Nested
      @TestMetadata("analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow")
      @TestDataPath("$PROJECT_ROOT")
      public class ControlFlow {
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top