Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for testDir (0.91 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    		return true, nil
    	})
    	if err != nil || i != 1 {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    	// returns immediately on error
    	testErr := fmt.Errorf("some other error")
    	err = ExponentialBackoff(opts, func() (bool, error) {
    		return false, testErr
    	})
    	if err != testErr {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    	// invoked multiple times
    	i = 1
    	err = ExponentialBackoff(opts, func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. subprojects/core/build.gradle.kts

        }
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("Some tests utilise the 'java-gradle-plugin' and with that TestKit, some also use the 'war' plugin")
        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-core"))
    
        annotationProcessor(project(":internal-instrumentation-processor"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_cluster_util_test.cc

    #include "tensorflow/core/framework/graph_to_functiondef.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/graph_def_builder.h"
    #include "tensorflow/core/graph/testlib.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/public/version.h"
    
    namespace tensorflow {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.integtests.fixtures.executer.IntegrationTestBuildContext
    import org.gradle.internal.reflect.validation.ValidationMessageChecker
    import org.gradle.testkit.runner.TaskOutcome
    
    import static org.gradle.api.problems.Severity.ERROR
    
    /**
     * For these tests to run you need to set ANDROID_SDK_ROOT to your Android SDK directory
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                    import org.junit.Test;
                    import transitive.Divisor;
    
                    public class DivTest {
                        @Test
                        public void testDiv() {
                            Divisor divisor = new Divisor();
                            Assert.assertEquals(2, divisor.div(4, 2));
                        }
                    }
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

                    }
                  };
                }
              };
          service.startAsync().awaitRunning();
          inGetNextSchedule.await();
          service.stopAsync();
        }
      }
    
      public void testBig() throws Exception {
        TestAbstractScheduledCustomService service =
            new TestAbstractScheduledCustomService() {
              @Override
              protected Scheduler scheduler() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

                    }
                  };
                }
              };
          service.startAsync().awaitRunning();
          inGetNextSchedule.await();
          service.stopAsync();
        }
      }
    
      public void testBig() throws Exception {
        TestAbstractScheduledCustomService service =
            new TestAbstractScheduledCustomService() {
              @Override
              protected Scheduler scheduler() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  8. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

                    import org.junit.Test;
                    import transitive.Divisor;
    
                    public class DivTest {
                        @Test
                        public void testDiv() {
                            Divisor divisor = new Divisor();
                            Assert.assertEquals(2, divisor.div(4, 2));
                        }
                    }
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  9. src/cmd/go/script_test.go

    	if err != nil {
    		return nil, err
    	}
    	httpsURL, err := url.Parse(srv.HTTPS.URL)
    	if err != nil {
    		return nil, err
    	}
    	env := []string{
    		pathEnvName() + "=" + testBin + string(filepath.ListSeparator) + os.Getenv(pathEnvName()),
    		homeEnvName() + "=/no-home",
    		"CCACHE_DISABLE=1", // ccache breaks with non-existent HOME
    		"GOARCH=" + runtime.GOARCH,
    		"TESTGO_GOHOSTARCH=" + goHostArch,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

            given:
            withBuildCache()
            file('inputFile').text = 'inputFile'
            buildScript """
                task copy(type:Copy) {
                   from 'inputFile'
                   into 'destDir'
                }
            """
            when:
            succeeds("copy")
    
            then:
            def copy = snapshotResults(":copy").inputFileProperties
    
            with(copy['rootSpec$1']) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top