Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 383 for Classes (0.35 sec)

  1. pom.xml

    							<paths>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_config.properties</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_env_crawler.properties</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_env_suggest.properties</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_env_thumbnail.properties</path>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    ```mermaid
    flowchart TB
        sources(Buildscript sources)
        compileAndInstrument{{"Compile and instrument\n(Execution engine)"}}
        classes(Buildscript classes*)
        
        sources --> compileAndInstrument --> classes
    ```
    
    #### Closer look at transformation of an individual Jars or class directories
    
    Transformation is done by modifying the bytecode of the plugin's jar or class directory. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServicesTest.groovy

            1 * artifacts.clear()
            1 * artifacts2.clear()
            1 * outgoing.artifact(artifact1)
            1 * outgoing.artifact(artifact2)
            0 * _
        }
    
        def "can setup a classes directory secondary variant"() {
            def sourceSet = Mock(SourceSet)
            def apiElements = Mock(ConfigurationInternal)
            def outgoing = Mock(ConfigurationPublications)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

            // This is important to get transitive implementation dependencies. PMD may load referenced classes for analysis so it expects the classpath to be "closed" world.
            getJvmPluginServices().configureAsRuntimeClasspath(pmdAuxClasspath);
    
            // We have to explicitly add compileClasspath here because it may contain classes that aren't part of the compileClasspathConfiguration. In particular, compile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

            if (file("build/classes/java/test/example/MyTest.class").exists()) {
                // for Gradle 4.0+
                assert file("build/classes/java/test/example/MyTest.class").delete()
            }
            if (file("build/classes/test/example/MyTest.class").exists()) {
                // for Gradle < 4.0
                assert file("build/classes/test/example/MyTest.class").delete()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

                    }
                }
    
                def sneakyTask = tasks.register("sneakyTask", SneakyTask) {}
    
                // Ensure that buildSrc compilation triggers an exec task.
                tasks.named("classes").configure {
                    dependsOn(sneakyTask)
                }
            """
    
            when:
            configurationCacheRun(":help")
    
            then:
            outputContains("Hello")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

                - org.gradle.jvm.version         = 11
                - org.gradle.libraryelements     = classes
                - org.gradle.usage               = java-api
            Artifacts
                - build/classes/java/main (artifactType = java-classes-directory)
    
    --------------------------------------------------
    Variant mainSourceElements (i)
    --------------------------------------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            given:
            def classesDir = tmpDir.createDir("some-module/out/production/classes")
            def staticResourcesDir = tmpDir.createDir("some-module/out/production/resources")
            def ignoredDir = tmpDir.createDir("some-module/ignore-me-out/production/classes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            testSourceSet.compileClasspath.contains(new File(project.buildDir, 'classes/java/main'))
            testSourceSet.annotationProcessorPath.is(project.configurations.testAnnotationProcessor)
            testSourceSet.java.destinationDirectory.set(new File(project.buildDir, 'classes/java/test'))
            testSourceSet.output.resourcesDir == new File(project.buildDir, 'resources/test')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            def libs = module.component.orderEntry.library
            assert libs.size() == 1
            assert libs.CLASSES.root*.@url*.text().collect { new File(it).name } as Set == [artifact1.name + "!"] as Set
            assert libs.CLASSES.root*.@url*.text().findAll() { it.contains("\$GRADLE_REPO\$") }.size() == 1
            assert libs.CLASSES.root*.@url*.text().collect { it.replace("\$GRADLE_REPO\$", relPath(repoDir)) } as Set == ["jar://${relPath(artifact1)}!/"] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top