Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 907 for getCsv (0.17 sec)

  1. src/cmd/go/testdata/script/test_goroot_PATH.txt

    	"os/exec"
    	"path/filepath"
    	"testing"
    )
    
    func TestGoCommandExists(t *testing.T) {
    	got, err := exec.LookPath("go")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	want := filepath.Join(os.Getenv("GOROOT"), "bin", "go" + os.Getenv("GOEXE"))
    	if got != want {
    		t.Fatalf(`exec.LookPath("go") = %q; want %q`, got, want)
    	}
    }
    -- $WORK/bin/README.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 795 bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractKotlinPluginAndroidSmokeTest.groovy

     */
    @LocalOnly(because = "Needs Android environment")
    abstract class AbstractKotlinPluginAndroidSmokeTest extends AbstractSmokeTest implements RunnerFactory {
        abstract String getSampleName()
        abstract GradleDsl getDSL()
    
        VersionNumber kotlinPluginVersion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/env_windows.go

    // license that can be found in the LICENSE file.
    
    // Windows environment variables.
    
    package windows
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func Getenv(key string) (value string, found bool) {
    	return syscall.Getenv(key)
    }
    
    func Setenv(key, value string) error {
    	return syscall.Setenv(key, value)
    }
    
    func Clearenv() {
    	syscall.Clearenv()
    }
    
    func Environ() []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 20:35:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/fixtures/IdeCommandLineUtil.groovy

                    Properties properties = new Properties()
                    properties.JAVA_HOME = String.valueOf(System.getenv('JAVA_HOME'))
                    properties.GRADLE_USER_HOME = String.valueOf(gradle.gradleUserHomeDir.absolutePath)
                    properties.GRADLE_OPTS = String.valueOf(System.getenv('GRADLE_OPTS'))
                    return properties
                }
    
                void assertEquals(key, expected, actual) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprogcgo/sigfwd.go

    			fprintf(stderr, "SIGSEGV caught in C unexpectedly\n");
    			exit(1);
    		}
    		fprintf(stdout, "OK\n");
    		exit(0);  // success
    	}
    }
    
    static void __attribute__ ((constructor)) sigsetup(void) {
    	if (getenv("GO_TEST_CGOSIGFWD") == NULL) {
    		return;
    	}
    
    	struct sigaction act;
    
    	memset(&act, 0, sizeof act);
    	act.sa_handler = segvhandler;
    	sigaction(SIGSEGV, &act, NULL);
    }
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 01 17:06:49 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuterTest.groovy

            then:
            !allArgs.toString().contains("-Porg.gradle.java.installations.auto-download")
        }
    
        def "does not allow you to use startBuildProcessInDebugger on CI"() {
            Assume.assumeTrue(System.getenv().containsKey("CI"))
            when:
            executer.startBuildProcessInDebugger(true)
            executer.getAllArgs()
            then:
            def e = thrown(IllegalArgumentException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/internal/browser/browser.go

    func Commands() [][]string {
    	var cmds [][]string
    	if exe := os.Getenv("BROWSER"); exe != "" {
    		cmds = append(cmds, []string{exe})
    	}
    	switch runtime.GOOS {
    	case "darwin":
    		cmds = append(cmds, []string{"/usr/bin/open"})
    	case "windows":
    		cmds = append(cmds, []string{"cmd", "/c", "start"})
    	default:
    		if os.Getenv("DISPLAY") != "" {
    			// xdg-open is only for use in a desktop environment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/api_template.__init__.py

      __path__ = [_tf_api_dir]
    elif _tf_api_dir not in __path__:
      __path__.append(_tf_api_dir)
    
    # Hook external TensorFlow modules.
    
    # Load tensorflow-io-gcs-filesystem if enabled
    if (_os.getenv("TF_USE_MODULAR_FILESYSTEM", "0") == "true" or
        _os.getenv("TF_USE_MODULAR_FILESYSTEM", "0") == "1"):
      import tensorflow_io_gcs_filesystem as _tensorflow_io_gcs_filesystem
    
    # Lazy-load Keras v2/3.
    _tf_uses_legacy_keras = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 06:27:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

        val isCiServer = CI_ENVIRONMENT_VARIABLE in System.getenv()
        val isTravis = "TRAVIS" in System.getenv()
        val isGhActions = "GITHUB_ACTIONS" in System.getenv()
        val isTeamCity = "TEAMCITY_VERSION" in System.getenv()
        val isTeamCityParallelTestsEnabled
            get() = "TEAMCITY_PARALLEL_TESTS_ENABLED" in System.getenv()
        val isCodeQl: Boolean by lazy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/android/AndroidHome.groovy

        private static final String ENV_VARIABLE_NAME = "ANDROID_SDK_ROOT"
    
        static void assumeIsSet() {
            assumeThat(NO_ENV_MESSAGE, System.getenv(ENV_VARIABLE_NAME), notNullValue())
        }
    
        static void assertIsSet() {
            assertThat(NO_ENV_MESSAGE, System.getenv(ENV_VARIABLE_NAME), notNullValue())
        }
    
        private static final String NO_ENV_MESSAGE = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top