Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 806 for TestTd (0.18 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceFlakinessDataProvider.java

         *
         * <pre>
         *  SELECT TESTID, TESTPROJECT, AVG(CONVERT(CASEWHEN(DIFFCONFIDENCE &gt; 0.97, 1, 0), DECIMAL)) AS FAILURE_RATE,
         *  FROM TESTEXECUTION
         *  WHERE (CHANNEL = 'flakiness-detection-master' OR CHANNEL = 'flakiness-detection-release')
         *  GROUP BY TESTID
         * </pre>
         *
         * @return the flakiness rate in DB, null if not exists.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/groovy/buildSrc/src/main/java/org/myorg/SiteExtension.java

    import org.gradle.api.Action;
    import org.gradle.api.file.RegularFileProperty;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.tasks.Nested;
    
    // tag::snippet[]
    abstract public class SiteExtension {
    
        abstract public RegularFileProperty getOutputDir();
    
        @Nested
        abstract public SiteInfo getSiteInfo();
    
        public void siteInfo(Action<? super SiteInfo> action) {
            action.execute(getSiteInfo());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 474 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/kotlin/buildSrc/src/main/java/org/myorg/SiteExtension.java

    import org.gradle.api.Action;
    import org.gradle.api.file.RegularFileProperty;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.tasks.Nested;
    
    // tag::snippet[]
    abstract public class SiteExtension {
    
        abstract public RegularFileProperty getOutputDir();
    
        @Nested
        abstract public SiteInfo getSiteInfo();
    
        public void siteInfo(Action<? super SiteInfo> action) {
            action.execute(getSiteInfo());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 474 bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenBuildExperimentRunner.java

                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    
        private InvocationSettings createInvocationSettings(String testId, MavenBuildExperimentSpec experimentSpec) {
            return createInvocationSettingsBuilder(testId, experimentSpec)
                .setInvoker(BuildInvoker.Maven)
                .setVersions(ImmutableList.of(experimentSpec.getInvocation().getMavenVersion()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

            getCallableSignatures(names.toList())
        }
    
        /**
         * Return a sequence of [KaClassifierSymbol] which current scope contain if classifier name matches [nameFilter]. The sequence includes:
         * nested classes, inner classes, nested type aliases for the class scope, and top-level classes and top-level type aliases for file scope.
         *
         * This function needs to retrieve a set of all possible names before processing the scope.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyKotlinInterOpIntegrationTest.groovy

                import ${DefaultTask.name}
                import ${RegularFileProperty.name}
                import ${TaskAction.name}
                import ${Nested.name}
    
                open class ProducerTask: DefaultTask() {
                    @Nested
                    val params: Params = project.objects.newInstance(Params::class.java)
    
                    @TaskAction
                    fun run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestIdProvider.groovy

            this.testSpec = testSpec
            updateId()
        }
    
        def updateId() {
            if (methodName != null && testSpec != null) {
                if (testSpec.hasProperty('testId') && testSpec.testId == null) {
                    testSpec.testId = methodName
                } else if (testSpec.hasProperty('displayName') && testSpec.displayName == null) {
                    testSpec.displayName = methodName
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ClassGenerator.java

        interface SerializationConstructor<T> {
            /**
             * Creates a new instance, using the given services and parameters. Uses the given instantiator to create nested objects, if required.
             */
            T newInstance(ServiceLookup services, InstanceGenerator nested) throws InvocationTargetException, IllegalAccessException, InstantiationException;
        }
    
        interface GeneratedConstructor<T> {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_nest_sub_v1.0.0.txt

    Written by hand.
    Test case for nested modules without an explicit relationship.
    This is nested below the top-level module.
    
    -- .mod --
    module example.com/nest/sub
    -- .info --
    {"Version": "v1.0.0"}
    -- go.mod --
    module example.com/nest/sub
    -- y/y.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 19:29:47 UTC 2019
    - 261 bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java

      }
    
      public void testSetFuture() throws Exception {
        SettableFuture<String> future = SettableFuture.create();
        SettableFuture<String> nested = SettableFuture.create();
        assertTrue(future.setFuture(nested));
        // Later attempts to set the future should return false.
        assertFalse(future.set("x"));
        assertFalse(future.setException(new Exception("bar")));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top