Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 795 for home_1 (0.29 sec)

  1. src/path/filepath/example_unix_test.go

    	// a/b/c
    	// ../xyz
    }
    
    func ExampleMatch() {
    	fmt.Println("On Unix:")
    	fmt.Println(filepath.Match("/home/catch/*", "/home/catch/foo"))
    	fmt.Println(filepath.Match("/home/catch/*", "/home/catch/foo/bar"))
    	fmt.Println(filepath.Match("/home/?opher", "/home/gopher"))
    	fmt.Println(filepath.Match("/home/\\*", "/home/*"))
    
    	// Output:
    	// On Unix:
    	// true <nil>
    	// false <nil>
    	// true <nil>
    	// true <nil>
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_download_issue51114.txt

    [!net:github.com] skip
    [!git] skip
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # 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 GOPROXY=direct
    
    ! go mod download
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 749 bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

            ['/var', '/home']              | '/usr'               | false
            ['/var/log', '/var/home', '/'] | '/usr'               | true
            ['/', '/home']                 | '/'                  | true
            ['/home', '/']                 | '/'                  | true
            ['/home', '/']                 | '/home'              | true
            ['/', '/home']                 | '/home'              | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_download_git_decorate_full.txt

    [short] skip
    [!git] skip
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # 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 GOPROXY=direct
    
    exec git config --get log.decorate
    stdout 'full'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1011 bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/test/ApplicationSpec.scala

          route(app, FakeRequest(GET, "/boum")).map(status(_)) mustBe Some(NOT_FOUND)
        }
    
        "render the index page" in {
          val home = route(app, FakeRequest(GET, "/")).get
    
          status(home) mustBe Status.OK
          contentType(home) mustBe Some("text/html")
          contentAsString(home) must include ("Your new application is ready.")
        }
    
        "tests can use commons-lang play dependency" in {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_gomodcache.txt

    [GOOS:windows] env USERPROFILE=$WORK/home # Ensure USERPROFILE is a valid path (rather than /no-home/ so we don't run into the logic that "uninfers" GOPATH in cmd/go/main.go
    [GOOS:plan9] env home=$WORK/home
    [!GOOS:windows] [!GOOS:plan9] env HOME=$WORK/home
    env GOMODCACHE=
    env GOPATH=
    go env GOMODCACHE
    stdout $HOME[/\\]go[/\\]pkg[/\\]mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/process/internal/worker/DefaultWorkerProcessBuilderIntegrationTest.groovy

            tasks.test {
                doFirst {
                    classpath += files(System.getProperty("user.home"),
                            System.getProperty("user.home") + File.separator + "*",
                            System.getProperty("user.home") + File.separator + "Non exist path",
                            System.getProperty("user.home") + File.separator + "Non exist path" + File.separator + "*")
                }
            }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistry.java

    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * Reuses the services for the most recent Gradle user home dir. Could instead cache several most recent and clean these up on memory pressure, however in practise there is only a single user home dir associated with a given build process.
     */
    public class DefaultGradleUserHomeScopeServiceRegistry implements GradleUserHomeScopeServiceRegistry, Closeable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/listProperty/tests/listPropertyGroovy.out

    > Task :producerOne
    Wrote 'Hello, World!' to /home/user/gradle/samples/output/one.txt
    
    > Task :producerTwo
    Wrote 'Hello, World!' to /home/user/gradle/samples/output/two.txt
    
    > Task :consumer
    Read 'Hello, World!' from /home/user/gradle/samples/output/one.txt
    Read 'Hello, World!' from /home/user/gradle/samples/output/two.txt
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 381 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/listProperty/tests/listPropertyKotlin.out

    > Task :producerOne
    Wrote 'Hello, World!' to /home/user/gradle/samples/kotlin/output/one.txt
    
    > Task :producerTwo
    Wrote 'Hello, World!' to /home/user/gradle/samples/kotlin/output/two.txt
    
    > Task :consumer
    Read 'Hello, World!' from /home/user/gradle/samples/kotlin/output/one.txt
    Read 'Hello, World!' from /home/user/gradle/samples/kotlin/output/two.txt
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 409 bytes
    - Viewed (0)
Back to top