Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 299 for home_1 (0.12 sec)

  1. src/cmd/dist/buildtool.go

    	"sdk/go1.17",
    	"go1.17",
    }
    
    func bootstrapBuildTools() {
    	goroot_bootstrap := os.Getenv("GOROOT_BOOTSTRAP")
    	if goroot_bootstrap == "" {
    		home := os.Getenv("HOME")
    		goroot_bootstrap = pathf("%s/go1.4", home)
    		for _, d := range tryDirs {
    			if p := pathf("%s/%s", home, d); isdir(p) {
    				goroot_bootstrap = p
    			}
    		}
    	}
    	xprintf("Building Go toolchain1 using %s.\n", goroot_bootstrap)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

                connector.useInstallation(scenarioDefinition.getBuildConfiguration().getGradleHome());
                // First initialize the Gradle instance using the default user home dir
                // This sets some static state that uses files from the user home dir, such as DLLs
                connector.useGradleUserHomeDir(context.getGradleUserHomeDir());
                try (ProjectConnection connection = connector.connect()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/tests/go122-annotations-stress.test

    String id=111
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/annotation.go"
    String id=112
    	data="main.do"
    String id=113
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/trace/v2/testdata/testprog/annotations-stress.go"
    String id=114
    	data="main.main"
    String id=115
    	data="sync.(*Mutex).Lock"
    String id=116
    	data="/usr/local/google/home/mknyszek/work/go-1/src/sync/mutex.go"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonBuildOptions.java

            public JavaHomeOption() {
                super(GRADLE_PROPERTY);
            }
    
            @Override
            public void applyTo(String value, DaemonParameters settings, Origin origin) {
                File javaHome = new File(value);
                if (!javaHome.isDirectory()) {
                    origin.handleInvalidValue(value, "Java home supplied is invalid");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        /**
         * Returns the directory to use as the user home directory.
         *
         * @return The home directory.
         */
        public File getGradleUserHomeDir() {
            return gradleUserHomeDir;
        }
    
        /**
         * Sets the directory to use as the user home directory. Set to null to use the default directory.
         *
         * @param gradleUserHomeDir The home directory. May be null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

            executer.gradleUserHomeDir.file(BuildScopeCacheDir.UNDEFINED_BUILD).assertDoesNotExist()
        }
    
        def "shows help message when run in users home directory"() {
            given:
            useTestDirectoryThatIsNotEmbeddedInAnotherBuild()
    
            // the default, if running from user home dir
            def gradleUserHomeDir = file(".gradle")
            executer.withGradleUserHomeDir(gradleUserHomeDir)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. docs/ja/docs/tutorial/path-params.md

    したがって、以下の様に使用できます:
    
    ```Python hl_lines="6"
    {!../../../docs_src/path_params/tutorial004.py!}
    ```
    
    !!! tip "豆知識"
        最初のスラッシュ (`/`)が付いている `/home/johndoe/myfile.txt` をパラメータが含んでいる必要があります。
    
        この場合、URLは `files` と `home` の間にダブルスラッシュ (`//`) のある、 `/files//home/johndoe/myfile.txt` になります。
    
    ## まとめ
    
    簡潔で、本質的で、標準的なPythonの型宣言を使用することで、**FastAPI**は以下を行います:
    
    * エディターサポート: エラーチェック、自動補完、など
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/cfg/cfg.go

    func gopath(ctxt build.Context) string {
    	if len(ctxt.GOPATH) > 0 {
    		return ctxt.GOPATH
    	}
    	env := "HOME"
    	if runtime.GOOS == "windows" {
    		env = "USERPROFILE"
    	} else if runtime.GOOS == "plan9" {
    		env = "home"
    	}
    	if home := os.Getenv(env); home != "" {
    		def := filepath.Join(home, "go")
    		if filepath.Clean(def) == filepath.Clean(runtime.GOROOT()) {
    			GoPathError = "cannot set GOROOT as GOPATH"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

                    globalServices.get(UserInputReader.class),
                    System.in,
                    globalServices.get(BuildExecutor.class)
                ));
    
            // Force the user home services to be stopped first, the dependencies between the user home services and the global services are not preserved currently
            return runBuildAndCloseServices(startParameter, daemonParameters, executor, buildProcessState.getServices(), buildProcessState);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

        }
    
        @Test
        public void testEnvars() throws Exception {
            context.put("env.HOME", "/path/to/home");
    
            Map<String, String> modelProperties = new HashMap<>();
            modelProperties.put("outputDirectory", "${env.HOME}");
    
            Model model = Model.newBuilder().properties(modelProperties).build();
    
            ModelInterpolator interpolator = createInterpolator();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top