Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 510 for TestTd (0.12 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

         * OS family that can be tested for. {@value}
         */
        private static final String FAMILY_OS2 = "os/2";
    
        /**
         * OS family that can be tested for. {@value}
         */
        private static final String FAMILY_NETWARE = "netware";
    
        /**
         * OS family that can be tested for. {@value}
         */
        private static final String FAMILY_DOS = "dos";
    
        /**
         * OS family that can be tested for. {@value}
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                class MyTask extends DefaultTask {
                    @Nested
                    Tree tree = new Tree(
                            left: new Tree([:]),
                            right: new Tree([:])
                        )
    
                    public static class Tree {
                        @Optional @Nested
                        Tree left
    
                        @Optional @Nested
                        Tree right
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

         * OS family that can be tested for. {@value}
         */
        private static final String FAMILY_OS2 = "os/2";
    
        /**
         * OS family that can be tested for. {@value}
         */
        private static final String FAMILY_NETWARE = "netware";
    
        /**
         * OS family that can be tested for. {@value}
         */
        private static final String FAMILY_DOS = "dos";
    
        /**
         * OS family that can be tested for. {@value}
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

                Object newOwner = parents.remove(testId);
                outputRedirector.setOutputOwner(newOwner);
            }
            processor.completed(testId, event);
        }
    
        @Override
        public void output(Object testId, TestOutputEvent event) {
            processor.output(testId, event);
        }
    
        @Override
        public void failure(Object testId, TestFailure result) {
            processor.failure(testId, result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

              notValues: ["not-iss", "not-iss-prefix-*", "*-not-suffix-iss", "*"]
            - key: "request.auth.claims[nested1][nested2]"
              values: ["nested", "nested-prefix-*", "*-suffix-nested", "*"]
              notValues: ["not-nested", "not-nested-prefix-*", "*-not-suffix-nested", "*"]
            - key: "destination.ip"
              values: ["10.10.10.10", "192.168.10.0/24"]
              notValues: ["90.10.10.10", "90.168.10.0/24"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                public class MyTask extends DefaultTask {
                    @Nested
                    public Options getOptions() {
                        return new Options();
                    }
    
                    @Nested
                    public List<Options> getOptionsList() {
                        return Arrays.asList(new Options());
                    }
    
                    @Nested
                    public Iterable<Options> getIterableOptions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/accesslogs_test.go

    		clientCount := logCount(t, from, testID)
    		serverCount := logCount(t, to, testID)
    
    		from.CallOrFail(t, echo.CallOptions{
    			To: to,
    			Port: echo.Port{
    				Name: "http",
    			},
    			HTTP: echo.HTTP{
    				Path: "/" + testID,
    			},
    		})
    
    		return retry.UntilSuccess(func() error {
    			clientDeltaCount := logCount(t, from, testID) - clientCount
    			if clientDeltaCount > 0 != exceptClientLog {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelModelQueryIntegrationTest.groovy

            withIsolatedProjects()
            def models = runBuildAction(new FetchCustomModelForSameProjectInParallel())
    
            then:
            // Ensure nested requests are all executed and not cached individually
            outputContains("Executing nested-1")
            outputContains("Executing nested-2")
    
            and:
            models.size == 2
            models[0].message == "It works from project :"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ToolingApiPolymorphismCrossVersionTest.groovy

                }
    
                class DefaultCompositeModel implements java.io.Serializable {
                    private final DefaultModel nested
                    DefaultCompositeModel(DefaultModel nested) { this.nested = nested }
                    BaseModel getNested() { nested }
                }
            """
        }
    
        def "supports model polymorphism"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:03:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/ManifestUtilTest.groovy

            def file2 = tmpDir.file('different/nested/jar2.jar')
    
            then:
            ManifestUtil.createManifestClasspath(jarFile, [file1, file2]) == "${tmpDirPath}different/jar1.jar ${tmpDirPath}different/nested/jar2.jar"
        }
    
        def "url encodes spaces in manifest classpath"() {
            when:
            def classpathFiles = [tmpDir.file('mydir/jar one.jar'), tmpDir.file('mydir/nested dir/jar two.jar')]
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top