Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 634 for TestTd (0.1 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. tests/integration/pilot/mirror_test.go

    			tc.percentage, actualPercent, tc.threshold, testID)
    		log.Infof("%v", err)
    		merr = multierror.Append(merr, err)
    	} else {
    		log.Infof("Got expected mirror traffic. Expected %g%%, got %.1f%% (threshold: %g%%, , testID: %s)",
    			tc.percentage, actualPercent, tc.threshold, testID)
    	}
    
    	return merr.ErrorOrNil()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestSpec.java

     */
    
    package org.gradle.performance.fixture;
    
    public class PerformanceTestSpec {
        String testId;
        String testClassName;
        Integer runs;
        Integer warmUpRuns;
    
        public String getTestId() {
            return testId;
        }
    
        public void setTestId(String testId) {
            this.testId = testId;
        }
    
        public String getTestClassName() {
            return testClassName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/AccessInCurrentReceiverOnlyTest.kt

        @Configuring
        fun nested(fn: Nested.() -> Unit) = Unit
    
        @get:Restricted
        val nested: Nested
            get() = TODO()
    }
    
    
    private
    class Nested {
        @get:Restricted
        var n = 1
    }
    
    
    class AccessInCurrentReceiverOnlyTest {
        val schema = schemaFromTypes(TopLevelForTest::class, listOf(TopLevelForTest::class, HasAnnotatedMembers::class, Nested::class))
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/integTest/groovy/org/gradle/initialization/LoadBuildStructureBuildOperationIntegrationTest.groovy

            createDirs("a", "nested", "nested/b")
            settingsFile << """
            include "a"
            includeBuild "nested"
    
            rootProject.name = "root"
            rootProject.buildFileName = 'root.gradle'
    
            """
    
            file("nested/settings.gradle") << """
            rootProject.name = "nested"
            include "b"
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. cmd/import-boss/testdata/nested-fwd/.import-restrictions

    rules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-root
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-both
        forbiddenPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-root
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 396 bytes
    - Viewed (0)
  8. 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)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppTest.groovy

        SwiftAppTest(SwiftSourceElement tested, GreeterElement greeter, SumElement sum, MultiplyElement multiply) {
            super(tested.projectName)
            greeterTest = new SwiftGreeterTest(greeter).withImport(tested.moduleName)
            sumTest = new SwiftSumTest(sum).withImport(tested.moduleName)
            multiplyTest = new SwiftMultiplyTest(multiply).withTestableImport(tested.moduleName)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftLibTest.groovy

        SwiftLibTest(SwiftSourceElement tested, GreeterElement greeter, SumElement sum, MultiplyElement multiply) {
            super(tested.projectName)
            sumTest = new SwiftSumTest(sum).withImport(tested.moduleName)
            greeterTest = new SwiftGreeterTest(greeter).withImport(tested.moduleName)
            multiplyTest = new SwiftMultiplyTest(multiply).withTestableImport(tested.moduleName)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top