Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 244 for Funnels (0.24 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/ChainingBuildActionRunner.java

        private final List<? extends BuildActionRunner> runners;
    
        public ChainingBuildActionRunner(List<? extends BuildActionRunner> runners) {
            this.runners = runners;
        }
    
        @Override
        public Result run(BuildAction action, BuildTreeLifecycleController buildController) {
            for (BuildActionRunner runner : runners) {
                Result result = runner.run(action, buildController);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

                    import org.junit.runner.Runner;
                    import org.junit.runners.BlockJUnit4ClassRunner;
                    import org.junit.runners.Suite;
                    import org.junit.runners.model.FrameworkMethod;
                    import org.junit.runners.model.InitializationError;
                    import org.junit.runners.model.Statement;
    
                    import java.util.ArrayList;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/AllExceptIgnoredTestRunnerBuilder.java

    import org.junit.internal.builders.IgnoredBuilder;
    import org.junit.internal.builders.JUnit4Builder;
    import org.junit.runner.Runner;
    import org.junit.runners.BlockJUnit4ClassRunner;
    import org.junit.runners.model.RunnerBuilder;
    import org.slf4j.LoggerFactory;
    
    import java.lang.reflect.Constructor;
    
    public class AllExceptIgnoredTestRunnerBuilder extends AllDefaultPossibilitiesBuilder {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProvider.java

    import org.gradle.api.internal.tasks.testing.TestSuiteExecutionException;
    import org.junit.internal.runners.JUnit38ClassRunner;
    import org.junit.runner.Description;
    import org.junit.runner.Request;
    import org.junit.runner.RunWith;
    import org.junit.runner.Runner;
    import org.junit.runners.AllTests;
    
    import java.util.List;
    
    public class IgnoredTestDescriptorProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4JUnitIntegrationTest.groovy

                import java.lang.reflect.Method;
                import org.junit.runner.notification.RunNotifier;
                import org.junit.runners.BlockJUnit4ClassRunner;
                import org.junit.runners.model.FrameworkMethod;
                import org.junit.runners.model.InitializationError;
                import org.junit.runners.model.Statement;
    
                public class CustomRunner extends BlockJUnit4ClassRunner {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProviderTest.groovy

    import junit.framework.TestCase
    import junit.framework.TestSuite
    import org.junit.Ignore
    import org.junit.Test
    import org.junit.internal.runners.InitializationError
    import org.junit.internal.runners.JUnit38ClassRunner
    import org.junit.internal.runners.JUnit4ClassRunner
    import org.junit.internal.runners.SuiteMethod
    import org.junit.runner.Description
    import org.junit.runner.RunWith
    import org.junit.runner.Runner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

        @Override
        public <T extends @Nullable Object> boolean put(
            @ParametricNullness T object,
            Funnel<? super T> funnel,
            int numHashFunctions,
            LockFreeBitArray bits) {
          long bitSize = bits.bitSize();
          long hash64 = Hashing.murmur3_128().hashObject(object, funnel).asLong();
          int hash1 = (int) hash64;
          int hash2 = (int) (hash64 >>> 32);
    
          boolean bitsChanged = false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4FilteringIntegrationTest.groovy

        void theParameterizedFiles() {
            file("src/test/java/ParameterizedFoo.java") << """
                ${testFrameworkImports}
                import org.junit.runners.Parameterized;
                import org.junit.runners.Parameterized.Parameters;
                import org.junit.runner.RunWith;
                import java.util.Arrays;
                import java.util.Collection;
    
                @RunWith(Parameterized.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/tunneling/destination-rule.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: tunnel-outbound-traffic-to-external-svc-via-external-forward-proxy
    spec:
      host: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
      subsets:
      - name: external-svc-tcp
        trafficPolicy:
          tunnel:
            targetHost: external.{{ .externalNamespace }}
            targetPort: {{ .externalSvcTcpPort }}
      - name: external-svc-tls
        trafficPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 20 19:37:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitEnclosedRunnerIntegrationTest.groovy

        def 'can run tests in Enclosed runner'() {
            given:
            file('src/test/java/EnclosedTest.java') << """
                ${testFrameworkImports}
                import org.junit.experimental.runners.Enclosed;
    
                @RunWith( Enclosed.class )
                public class EnclosedTest {
                    public static class InnerClass {
                       @Test
                        public void aTest() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top