Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,199 for anotherOk (0.38 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterLoggingOutputCaptureIntegrationTest.groovy

                "Test class OkTest -> test constructed\n" +
                "Test anotherOk(OkTest) -> before out\n" +
                "Test anotherOk(OkTest) -> before err\n" +
                "Test anotherOk(OkTest) -> ok out\n" +
                "Test anotherOk(OkTest) -> ok err\n" +
                "Test anotherOk(OkTest) -> after out\n" +
                "Test anotherOk(OkTest) -> after err\n" +
                "Test class OkTest -> test constructed\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                    private String[] splitClasspath(String classpath) {
                        return classpath.split(Pattern.quote(File.pathSeparator));
                    }
    
                    @Test
                    public void anotherOk() {
                    }
                }
            """.stripIndent()
    
            file('src/test/java/org/gradle/OtherTest.java') << """
                package org.gradle;
    
                ${testFrameworkImports}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

        def "reports project structure with single composite"() {
            given:
            createDirs("p1", "p2", "p2/p22", "another")
            file("settings.gradle") << """rootProject.name = 'my-root-project'
    include('p1')
    include('p2')
    include('p2:p22')
    includeBuild('another')"""
            file('another/settings.gradle').touch()
    
            when:
            run ":projects"
    
            then:
            outputContains """
    Projects:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

                problem("Build file 'build.gradle': line 11: Project ':' cannot access 'myExtension' extension on another project ':a'")
                problem("Build file 'build.gradle': line 3: Project ':' cannot access 'Project.plugins' functionality on another project ':a'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/declaring_dependencies_between_subprojects.adoc

    What if one subproject depends on another subproject?
    What if one project needs the artifact produced by another project?
    
    image::structuring-builds-2.png[]
    
    This is a common use case for multi-project builds.
    Gradle offers <<declaring_dependencies.adoc#sub:project_dependencies,project dependencies>> for this.
    
    [[sec:project_jar_dependencies]]
    == Depending on another project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 21:54:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/util/workloadinstances/index_test.go

    	wi3 := &model.WorkloadInstance{
    		Name:      "another-ip",
    		Namespace: selector.Namespace,
    		Endpoint: &model.IstioEndpoint{
    			Address: "3.3.3.3",
    			Labels:  map[string]string{"app": "another-wle"}, // should not match because of another label
    		},
    	}
    
    	wi4 := &model.WorkloadInstance{
    		Name:      "another-name",
    		Namespace: "another-namespace", // should not match because of another namespace
    		Endpoint: &model.IstioEndpoint{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                requires another;
            }
            '''
            file("src/main/java/example/io/example/Example.java") << '''
                package io.example;
    
                import io.another.BaseExample;
    
                public class Example extends BaseExample {}
            '''
            file("src/main/moreJava/another/module-info.java") << 'module another { exports io.another; }'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "configure(rootProject)" | 1                | "another project ':'"
            "rootProject"            | 1                | "another project ':'"
            "allprojects"            | 2                | "subprojects of project ':'"
            "beforeProject"          | 1                | "another project ':b'"
            "afterProject"           | 1                | "another project ':b'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            repo.createBranch('release')
            repo.createLightWeightTag('1.0.1')
            repo.createAnnotatedTag('v1.0.1', 'Release 1.0.1')
            def anotherSource = repo.workTree.file('dir/another.txt')
            anotherSource << 'Goodbye world!'
            c2 = repo.commit('Second Commit')
            repoHead = GitVersionRef.from(repo.head)
            repoSpec = new DefaultGitVersionControlSpec()
            repoSpec.url = repo.url
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PalantirConsistentVersionsPluginSmokeTest.groovy

                .expectDeprecationWarning("The compileClasspathCopy configuration has been deprecated for dependency declaration. This will fail with an error in Gradle 9.0. Please use another configuration instead. For more information, please refer to https://docs.gradle.org/${GradleVersion.current().version}/userguide/declaring_dependencies.html#sec:deprecated-configurations in the Gradle documentation.", issueUrl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top