Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 852 for home_1 (0.92 sec)

  1. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/DelegatedGradlePropertiesIntegrationTest.kt

                """.trimIndent()
            )
    
            // and: gradle user home gradle.properties file
            withFile(
                "gradle-user-home/gradle.properties",
                """
                setUserHomeProperty=user home value
                emptyUserHomeProperty=
    
                userHomeOverriddenBuildProperty=user home value
                cliOverriddenUserHomeProperty=user home value
    
                projectMutatedUserHomeProperty=user home value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. .teamcity/mvnw.cmd

    @REM set %HOME% to equivalent of $HOME
    if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
    
    @REM Execute a user defined script before this one
    if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
    @REM check for pre script, once with legacy .bat ending and once with .cmd ending
    if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
    if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
    :skipRcPre
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/stylesheets/dslHtml.xsl

    index 0 1 1 0 0 0 0 chapter toc,title Version - © Gradle Inc. 2021 All rights reserved. .cls-1 { fill: #02303a; } gradle Careers | Privacy | Terms of Service | Contact User Manual Home DSL Reference Home Release Notes User Manual Home DSL Reference Home Release Notes signature : :...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. common/scripts/setup_env.sh

    if [[ -f "${HOME}/.gitconfig" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.gitconfig,destination=/home/.gitconfig,readonly "
    fi
    
    # .netrc conditional host mount (needed for git commands inside container)
    if [[ -f "${HOME}/.netrc" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.netrc,destination=/home/.netrc,readonly "
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/link2.txt

    -- input --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    https:// is not a link.
    Nor is https://
    https://☺ is not a link.
    https://:80 is not a link.
    
    -- gofmt --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    https:// is not a link.
    Nor is https://
    https://☺ is not a link.
    https://:80 is not a link.
    
    -- text --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 997 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. fess-crawler/src/test/resources/ajax/js/test.js

    $(document).ready(function(){
      openPage("home.html");
      setEventHandlers();
    });
    
    function setEventHandlers(){
      $('#info').click(function(){ openPage("info.html") } );
      $('#home').click(function(){ openPage("home.html") } );
    }
    
    function openPage(page){
      $('#content').load(page);
      location.hash = page;
    }
    
    function addFooter(msg){
      $('#footer').html($('#footer').html() + "<p>FOOTER: " + msg + "</p>");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 410 bytes
    - Viewed (0)
Back to top