Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 852 for home_1 (0.17 sec)

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

    [GOOS:windows] env userconfig=$AppData
    env HOME=$WORK/userconfig # darwin,unix,ios
    [GOOS:darwin] env userconfig=$HOME'/Library/Application Support'
    [GOOS:ios] env userconfig=$HOME'/Library/Application Support'
    [!GOOS:windows] [!GOOS:darwin] [!GOOS:ios] [!GOOS:plan9] env userconfig=$HOME/.config
    env home=$WORK/userconfig # plan9
    [GOOS:plan9] env userconfig=$home/lib
    
    go telemetry
    stdout 'local'
    
    go telemetry off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

            pathMapping.setRegex("file:///home/");
            pathMapping.setReplacement("http://localhost/");
            pathMappingList.add(pathMapping);
    
            pathMappingHelper.cachedPathMappingList = pathMappingList;
    
            String text = "\"file:///home/\"";
            assertEquals("\"http://localhost/\"", pathMappingHelper.replaceUrls(text));
    
            text = "\"file:///home/user/\"";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_nocache.txt

    [GOOS:windows] stop # Does not support unwritable directories.
    [root] skip # Can write to unwritable directories.
    
    mkdir $WORK/unwritable/home
    chmod 0555 $WORK/unwritable/home
    [!GOOS:plan9] env HOME=$WORK/unwritable/home
    [GOOS:plan9] env home=$WORK/unwritable/home
    
    env GOCACHE=$WORK/unwritable/home
    ! go build -o triv triv.go
    stderr 'failed to initialize build cache.* permission denied'
    
    -- triv.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInstallation.groovy

        final String version
        final File home
        final File mvn
    
        public MavenInstallation(String version, File home) {
            this.version = version
            this.home = home
            this.mvn = findMvnExecutable(home)
        }
    
        static File findMvnExecutable(File home) {
            def bin = new File(home, "bin")
            if (IS_WINDOWS) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/JdkClassFinder.java

        private static @NotNull List<Path> getJdkClassesRoots(@NotNull Path home, boolean isJre) {
            Path[] jarDirs;
            Path fileName = home.getFileName();
            if (fileName != null && "Home".equals(fileName.toString()) && Files.exists(home.resolve("../Classes/classes.jar"))) {
                Path libDir = home.resolve("lib");
                Path classesDir = home.resolveSibling("Classes");
                Path libExtDir = libDir.resolve("ext");
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/link5.txt

    -- input --
    See the [Go home page] and the [pkg
    site].
    
    [Go home page]: https://go.dev/
    [pkg site]: https://pkg.go.dev
    [Go home page]: https://duplicate.ignored
    
    They're really great!
    
    -- gofmt --
    See the [Go home page] and the [pkg
    site].
    
    They're really great!
    
    [Go home page]: https://go.dev/
    [pkg site]: https://pkg.go.dev
    
    [Go home page]: https://duplicate.ignored
    
    -- text --
    See the Go home page and the pkg site.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 772 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_download_git_bareRepository.txt

    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    env GOPRIVATE=vcs-test.golang.org
    
    go mod download -x
    
    -- go.mod --
    module test
    
    go 1.18
    
    require vcs-test.golang.org/git/gitrepo1.git v1.2.3
    
    -- $WORK/home/gopher/.gitconfig --
    [user]
    	name = Go Gopher
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 597 bytes
    - Viewed (0)
  8. src/go/doc/comment/testdata/link.txt

    -- input --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    
    -- gofmt --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    
    -- text --
    The Go home page is https://go.dev/. It used to be https://golang.org.
    
    -- markdown --
    The Go home page is [https://go.dev/](https://go.dev/). It used to be [https://golang.org](https://golang.org).
    
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 527 bytes
    - Viewed (0)
  9. test/fixedbugs/bug206.go

    panic PC=0x2bcf10
    throw+0x33 /home/gri/go/src/pkg/runtime/runtime.c:71
    	throw(0x470f8, 0x0)
    sys·throwindex+0x1c /home/gri/go/src/pkg/runtime/runtime.c:45
    	sys·throwindex()
    main·f+0x26 /home/gri/go/test/bugs/bug206.go:16
    	main·f(0x2b9560, 0x0)
    main·main+0xc3 /home/gri/go/test/bugs/bug206.go:23
    	main·main()
    mainstart+0xf /home/gri/go/src/pkg/runtime/amd64/asm.s:55
    	mainstart()
    goexit /home/gri/go/src/pkg/runtime/proc.c:133
    	goexit()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 1K bytes
    - Viewed (0)
  10. cluster/gce/gci/master.yaml

          RemainAfterExit=yes
          ExecStartPre=/bin/mkdir -p /home/kubernetes/bin
          ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin
          ExecStartPre=/bin/mount -o remount,exec /home/kubernetes/bin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
Back to top