Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 556 for testFn (0.15 sec)

  1. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/Test.java

        @org.junit.Test
        public void testOne() throws Exception {
            if(Boolean.getBoolean("slowTasks")) {
                Thread.sleep(10);
            }
            for (int i = 0; i < 500; i++) {
                System.out.println("Some test output from ${testClassName}.testOne - " + i);
                System.err.println("Some test error  from ${testClassName}.testOne - " + i);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. pilot/test/xdstest/test.go

    package xdstest
    
    import (
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    )
    
    // EvaluateListenerFilterPredicates runs through the ListenerFilterChainMatchPredicate logic
    // This is exposed for testing only, and should not be used in XDS generation code
    func EvaluateListenerFilterPredicates(predicate *listener.ListenerFilterChainMatchPredicate, port int) bool {
    	if predicate == nil {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 29 21:47:46 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/scala/compilerPlugin/groovy/src/main/scala/org/gradle/sample/Test.scala

    package org.gradle.sample
    
    object Test {
        def main(args: Array[String]): Unit = {
            class A[X[_]]
            new A[Map[Int, *]]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 142 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/scala/compilerPlugin/kotlin/src/main/scala/org/gradle/sample/Test.scala

    package org.gradle.sample
    
    object Test {
        def main(args: Array[String]): Unit = {
            class A[X[_]]
            new A[Map[Int, *]]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 142 bytes
    - Viewed (0)
  5. hack/lib/test.sh

    #   all resources are supported.
    #   $1: Name of the resource to be tested.
    kube::test::if_supports_resource() {
      SUPPORTED_RESOURCES=${SUPPORTED_RESOURCES:-""}
      REQUIRED_RESOURCE=${1:-""}
    
      for r in "${SUPPORTED_RESOURCES[@]}"; do
        if [[ "${r}" == "*" || "${r}" == "${REQUIRED_RESOURCE}" ]]; then
          return 0
        fi
      done
      return 1
    }
    
    kube::test::version::object_to_file() {
      name=$1
      flags=${2:-""}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 16:46:34 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. testing/performance/src/templates/with-testng/Test.java

    package ${packageName};
    
    import org.testng.annotations.*;
    import static org.testng.Assert.*;
    
    public class ${testClassName} {
        private final ${productionClassName} production = new ${productionClassName}("value");
    
    <% 20.times { index -> %>
        @Test
        public void test${index}() {
            assertEquals(production.getProperty(), "value");
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 360 bytes
    - Viewed (0)
  7. .github/workflows/test.yml

          - name: Install Dependencies
            if: steps.cache.outputs.cache-hit != 'true'
            run: pip install -r requirements-tests.txt
          - name: Install Pydantic v2
            run: pip install "pydantic>=2.0.2,<3.0.0"
          - name: Lint
            run: bash scripts/lint.sh
    
      test:
        runs-on: ubuntu-latest
        strategy:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformLauncherSessionListenerIntegrationTest.groovy

            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

                " in the flakiness detection builds divided by the total number of runs of the scenario.";
            private static final String FAILURE_THRESHOLD_TITLE = "The failure threshold of flaky scenario, if a flaky scenario performance test's difference is higher than this value, " +
                " it will be recognized as a real failure.";
            private String name;
            private String title;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

        }
    }
    """
            succeeds('test')
        }
    
        void nonTransitiveDependenciesAreNotRetrieved() {
            expect:
            repo.module('org.gradle.test', 'one', '1.0').publish()
            repo.module('org.gradle.test', 'two', '1.0').publish()
            def lib = repo.module('org.gradle.test', 'external1', '1.0')
            lib.dependsOn('org.gradle.test', 'one', '1.0')
            lib.artifact(classifier: 'classifier')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top