Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,260 for anotherOk (0.2 sec)

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelBuildOperationsIntegrationTest.groovy

                """
            }
    
            withMultipleActionTaskTypeInBuildScript()
        }
    
        def "worker-based task completes as soon as work items are finished (while another task is executing in parallel)"() {
            when:
            createDirs("childProject")
            settingsFile << """
                include ':childProject'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLoadingIntegrationTest.java

            usingBuildFile(buildFile).withTasks("do-stuff").run();
        }
    
        @Test
        public void buildFailsWhenNestedBuildHasNoSettingsFile() {
            createDirs("another");
            TestFile settingsFile = testFile("settings.gradle").write("include 'another'");
    
            TestFile subDirectory = getTestDirectory().file("sub");
            TestFile subBuildFile = subDirectory.file("build.gradle").write("");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/integTest/groovy/org/gradle/performance/fixture/IdProviderCrossBuildPerformanceTest.groovy

        }
    
        def "if test id is set, it is not replaced"() {
            when:
            runner.testGroup = "group"
            runner.testId = "Another id"
    
            then:
            runner.testId == "Another id"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/integTest/groovy/org/gradle/performance/fixture/IdProviderCrossVersionPerformanceTest.groovy

        }
    
        def "if test id is set, it is not replaced"() {
            when:
            runner.testProject = "test"
            runner.testId = "Another id"
    
            then:
            runner.testId == "Another id"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/integTest/groovy/org/gradle/performance/fixture/IdProviderGradleVsMavenPerformanceTest.groovy

        }
    
        def "if test id is set, it is not replaced"() {
            when:
            runner.testGroup = "group"
            runner.testId = "Another id"
    
            then:
            runner.testId == "Another id"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/net/mail/example_test.go

    	}
    
    	fmt.Println(e.Name, e.Address)
    
    	// Output:
    	// Alice ******@****.***
    }
    
    func ExampleReadMessage() {
    	msg := `Date: Mon, 23 Jun 2015 11:40:36 -0400
    From: Gopher <******@****.***>
    To: Another Gopher <******@****.***>
    Subject: Gophers at Gophercon
    
    Message body
    `
    
    	r := strings.NewReader(msg)
    	m, err := mail.ReadMessage(r)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	header := m.Header
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  7. src/mime/multipart/example_test.go

    	msg := &mail.Message{
    		Header: map[string][]string{
    			"Content-Type": {"multipart/mixed; boundary=foo"},
    		},
    		Body: strings.NewReader(
    			"--foo\r\nFoo: one\r\n\r\nA section\r\n" +
    				"--foo\r\nFoo: two\r\n\r\nAnd another\r\n" +
    				"--foo--\r\n"),
    	}
    	mediaType, params, err := mime.ParseMediaType(msg.Header.Get("Content-Type"))
    	if err != nil {
    		log.Fatal(err)
    	}
    	if strings.HasPrefix(mediaType, "multipart/") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/additional-responses.md

        * In the key `content`, that has as value another JSON object (`dict`) that contains:
            * A key with the media type, e.g. `application/json`, that contains as value another JSON object, that contains:
                * A key `schema`, that has as the value the JSON Schema from the model, here's the correct place.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/LocalComponentRegistry.java

    import javax.annotation.concurrent.ThreadSafe;
    
    /**
     * A registry of all dependency resolution state for locally produced components.
     * These components may be produced within the same project, another project in the same multi-project build,
     * or in another build within a composite.
     */
    @ThreadSafe
    public interface LocalComponentRegistry {
        /**
         * @return The component metadata for the supplied identifier.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 17:59:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/session/scope/SessionScopeProxyTest.java

            @Inject
            @Named("scoped")
            BeanItf myBean;
    
            @Inject
            @Named("another")
            BeanItf2 anotherBean;
        }
    
        @Named
        static class MySingletonBean2 {
            @Inject
            @Named("scoped")
            MySessionScopedBean myBean;
    
            @Inject
            @Named("another")
            BeanItf2 anotherBean;
        }
    
        interface BeanItf {
            Session getSession();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 12:52:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top