Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 407 for crashes (0.18 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLayoutIntegrationTest.groovy

            buildDir.file('classes/java/main').assertHasDescendants(
                'org/gradle/JavaClass.class',
                'org/gradle/JavaClass2.class'
            )
            buildDir.file('classes/groovy/main').assertHasDescendants(
                'org/gradle/GroovyClass.class',
                'org/gradle/GroovyClass2.class',
            )
            buildDir.file('classes/scala/main').assertHasDescendants(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/gatewayclass.go

    type ClassController struct {
    	queue   controllers.Queue
    	classes kclient.Client[*gateway.GatewayClass]
    }
    
    func NewClassController(kc kube.Client) *ClassController {
    	gc := &ClassController{}
    	gc.queue = controllers.NewQueue("gateway class",
    		controllers.WithReconciler(gc.Reconcile),
    		controllers.WithMaxAttempts(25))
    
    	gc.classes = kclient.New[*gateway.GatewayClass](kc)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesBetweenBuildsFileSystemWatchingIntegrationTest.groovy

            outputContains "Hello World!"
            executedAndNotSkipped ":compileJava", ":classes", ":run"
    
            when:
            mainSourceFile.text = sourceFileWithGreeting("Hello VFS!")
            waitForChangesToBePickedUp()
            runWithWatchingEnabled "run"
            then:
            outputContains "Hello VFS!"
            executedAndNotSkipped ":compileJava", ":classes", ":run"
        }
    
        def "buildSrc changes are recognized"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

                classes.doLast { t ->
                    println "classes of \$t.path"
                }
            """
            file("buildSrc/settings.gradle") << settings << "\n"
    
            when:
            run()
    
            then:
            outputContains("> Configure project :buildSrc")
            result.groupedOutput.task(":buildSrc:classes").output.contains("classes of :classes")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/api/plugins/BuildSrcPluginIntegrationTest.groovy

            """
            buildFile << """
                apply plugin: MyPlugin
                apply plugin: MyPluginSub
                // nuke buildSrc classes so we can't use them
                project.delete(file("buildSrc/build/classes"))
                project.delete(file("buildSrc/subproject/build/classes"))
            """
            when:
            succeeds("myTaskMyPlugin", "myTaskMyPluginSub")
            then:
            outputContains("From MyPlugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderFactory.java

        /**
         * Creates a ClassLoader implementation which has only the classes from the specified URIs and the Java API visible.
         */
        ClassLoader createIsolatedClassLoader(String name, ClassPath classPath);
    
        /**
         * Creates a ClassLoader implementation which has, by default, only the classes from the Java API visible, but which can allow access to selected classes from the given parent ClassLoader.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

             * first value encountered in iteration order, which may be random.
             */
            if (classes | modules) {
                if (classes & modules) {
                    selected = getPathType(path);
                } else if (classes) {
                    selected = JavaPathType.CLASSES;
                } else {
                    selected = JavaPathType.MODULES;
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/sampleJavaProject/kotlin/build.gradle.kts

    // tag::inner-link-task-properties[]
    val archivesDirPath = layout.buildDirectory.dir("archives")
    // end::inner-link-task-properties[]
    
    tasks.register<Zip>("packageClasses") {
        archiveAppendix = "classes"
        destinationDirectory = archivesDirPath
    
        from(tasks.compileJava)
    }
    // end::link-task-properties[]
    
    // tag::nested-specs[]
    tasks.register<Copy>("nestedSpecs") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:03:24 UTC 2024
    - 892 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/files/sampleJavaProject/groovy/build.gradle

    // tag::inner-link-task-properties[]
    def archivesDirPath = layout.buildDirectory.dir('archives')
    // end::inner-link-task-properties[]
    
    tasks.register('packageClasses', Zip) {
        archiveAppendix = "classes"
        destinationDirectory = archivesDirPath
    
        from compileJava
    }
    // end::link-task-properties[]
    
    // tag::nested-specs[]
    tasks.register('nestedSpecs', Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:03:24 UTC 2024
    - 878 bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DependencyTree.groovy

     * limitations under the License.
     */
    
    package org.gradle.performance.generator
    
    import groovy.transform.CompileStatic
    
    /**
     * Generates a tree of dependencies between classes and sub-projects. It can be configured with
     * the number of projects and classes in each project by multiple calls to calculateClassDependencies().
     *
     * Reflects project dependencies in class dependencies and respects 'api' dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top