Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for testDir (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Location of temporary files for TestKit tests
    
    Tests that use the <<test_kit#test_kit, TestKit>> API used to create temporary files under the system temporary directory as defined by `java.io.tmpdir`.
    These files were used to store copies of Gradle distributions or another test-only Gradle User Home.
    
    TestKit tests will now create temporary files under the `Test` task's temporary directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

                </plugin>
                <plugin>
                    <artifactId>maven-javadoc-plugin</artifactId>
                    <version>2.9.1</version>
                    <configuration>
                        <destDir>javadoc/latest</destDir>
                        <stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile>
                        <show>protected</show>
                        <author>false</author>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

    /**
     * A plugin for building java gradle plugins. Automatically generates plugin descriptors. Emits warnings for common error conditions. <p> Provides a direct integration with TestKit by declaring the
     * {@code gradleTestKit()} dependency for the test compile configuration and a dependency on the plugin classpath manifest generation task for the test runtime configuration. Default conventions can
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. src/path/filepath/path_windows_test.go

    		t.Fatalf("tmpDir path %q must have drive letter in it", tmpDir)
    	}
    	test := EvalSymlinksTest{"test/linkabswin", tmpDir[:3]}
    
    	// Create the symlink farm using relative paths.
    	testdirs := append(EvalSymlinksTestDirs, test)
    	for _, d := range testdirs {
    		var err error
    		path := simpleJoin(tmpDir, d.path)
    		if d.dest == "" {
    			err = os.Mkdir(path, 0755)
    		} else {
    			err = os.Symlink(d.dest, path)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top