Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 619 for Classes (0.46 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

            createDirs("app")
            settingsFile << """
                include 'app'
            """
            addDependency("app", "impl")
            def app = new CompilationOutputsFixture(file("app/build/classes"))
            source api: ["class A {}"]
            source impl: ["class B extends A {}"]
            source app: ["class Unrelated {}", "class C extends B {}", "class D extends C {}"]
            app.snapshot { run language.compileTaskName }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    The following example shows a more complicated transform.
    It moves some selected classes of a JAR to a different package, rewriting the byte code of the moved classes and all classes using the moved classes (class relocation).
    In order to determine the classes to relocate, it looks at the packages of the input artifact and the dependencies of the input artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

         *
         * Available for compatibility with previously published modules.  Should <strong>NOT</strong> be used for new publishing.
         * No plans for permanent removal.
         */
        @Deprecated
        public static final String DEPRECATED_JAVA_API_CLASSES = "java-api-classes";
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisTest.groovy

            )
        }
    
        static ClassSetAnalysis snapshot(Map<String, HashCode> hashes) {
            new ClassSetAnalysis(new ClassSetAnalysisData(hashes, [:], [:], null))
        }
    
        def "knows when there are no affected classes since some other snapshot"() {
            ClassSetAnalysis s1 = snapshot(["A": TestHashCodes.hashCodeFrom(0xaa), "B": TestHashCodes.hashCodeFrom(0xbb)])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

                } catch (Exception e) {
                    throw new GradleException("Could not generate worker process bootstrap classes.", e);
                }
            }
    
            private Set<Class<?>> getClassesForWorkerJar() {
                // TODO - calculate this list of classes dynamically
                List<Class<?>> classes = Arrays.asList(
                    GradleWorkerMain.class,
                    BootstrapSecurityManager.class,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

    <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
    <suite name="suite 1">
      <test name="test 1">
        <classes>
          <class name="${ATestNGClass.name}"/>
        </classes>
      </test>
      <test name="test 2">
        <classes>
          <class name="${ATestNGClass.name}"/>
        </classes>
      </test>
    </suite>"""
            def suite2 = dir.file("suite2.xml") << """<?xml version="1.0" encoding="UTF-8"?>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            given:
            buildFile '''
                task assemble(type: BreakingTask) {
                    dependsOn "classes"
                }
                task generatePermissions(type: BreakingTask) {
                    dependsOn "classes"
                }
                task classes(type: BreakingTask) {
                    finalizedBy "assemble", "generatePermissions"
                    dependsOn "compileJava", "processResources"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

        }
    
        @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = "classloader isolation does not work here in embedded mode")
        @InspectsExecutedTasks
        def "buildSrc classes are not visible to injected classes"() {
            plugin.build()
            def buildSrcSrcDir = file("buildSrc/src/main/groovy/org/gradle/test")
    
            // these class names intentionally clash with what we are injecting
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryOutgoingVariantsIntegrationTest.groovy

                }
            """
    
            when:
            resolve()
    
            then:
            result.assertTasksExecuted(":other-java:compileJava", ":java:compileJava", ":consumer:resolve")
            assertResolveOutput("""
                files: [main, api-1.0.jar, compile-only-api-1.0.jar]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.groovy

            }
        }
    
        /**
         * Fixture for capturing simple test class requirements.  Note that this class should be used only for simple test classes
         * and should not be enhanced to capture complex test classes with arbitrary features.  Complex test classes should be captured
         * with a raw {@link TestSource} fixture.
         */
        class TestClass {
            final String name
            final String packageName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
Back to top