Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 135 for start (0.22 sec)

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

    ! grep 'mod.example/sub/sub.go:' $WORK/covdata2/out.txt
    grep 'rsc.io' $WORK/covdata2/out.txt
    ! grep 'bufio/bufio.go:' $WORK/covdata2/out.txt
    
    #-------------------------------------------
    # end of test cmds, start of harness and related files.
    
    -- go.mod --
    module mod.example
    
    go 1.20
    
    require rsc.io/quote/v3 v3.0.0
    
    -- main/main.go --
    package main
    
    import (
    	"fmt"
    	"mod.example/sub"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. .github/pull_request_template.md

    Following this checklist to help us incorporate your
    contribution quickly and easily:
    
     - [ ] Make sure there is a [JIRA issue](https://issues.apache.org/jira/browse/MNG) filed
           for the change (usually before you start working on it).  Trivial changes like typos do not
           require a JIRA issue. Your pull request should address just this issue, without
           pulling in other changes.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 20 13:14:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Lexer.kt

                return startIndex.offset until currentPosition.offset
            }
    
            restore(startIndex)
            advance()
    
            return null
        }
    
        KotlinLexer().apply {
            start(script)
            while (tokenType != null) {
    
                when (tokenType) {
    
                    WHITE_SPACE -> {
                        // ignore
                        advance()
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/help.txt

    env GO111MODULE=off
    
    # go help shows overview.
    go help
    stdout 'Go is a tool'
    stdout 'bug.*start a bug report'
    
    # go help bug shows usage for bug
    go help bug
    stdout 'usage: go bug'
    stdout 'bug report'
    
    # go bug help is an error (bug takes no arguments)
    ! go bug help
    stderr 'bug takes no arguments'
    
    # go help mod shows mod subcommands
    go help mod
    stdout 'go mod <command>'
    stdout tidy
    
    # go help mod tidy explains tidy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/git/querytest.txt

    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2018-07-03T22:31:01-04:00
    git add go.mod
    git commit -a -m 'v1'
    git branch -m master
    git tag start
    
    git branch v2
    
    at 2018-07-03T22:33:47-04:00
    echo 'before v0.0.0-pre1'
    cp stdout status
    git add status
    git commit -a -m 'before v0.0.0-pre1'
    
    echo 'at v0.0.0-pre1'
    cp stdout status
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

        val isNoBuildScan: Boolean
            get() = startParameter.isNoBuildScan
    
        /**
         * Determines whether Isolated Projects option was enabled.
         *
         * Uses a build model parameter rather than a start parameter as the latter is not final and can be affected by other options of the build.
         */
        val isIsolatedProjects: Boolean
            get() = modelParameters.isIsolatedProjects
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt

                            // Remove top folder when unzipping, that way we get rid of Android Studio.app folder that can cause issues on Mac
                            // where MacOS would kill the Android Studio process right after start, issue: https://github.com/gradle/gradle-profiler/issues/469
                            relativePath = RelativePath(true, *relativePath.segments.drop(1).toTypedArray())
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_cache_inputs.txt

    env GO111MODULE=off
    
    # Test that cached test results are invalidated in response to
    # changes to the external inputs to the test.
    
    [short] skip
    [GODEBUG:gocacheverify=1] skip
    
    # We're testing cache behavior, so start with a clean GOCACHE.
    env GOCACHE=$WORK/cache
    
    # Build a helper binary to invoke os.Chtimes.
    go build -o mkold$GOEXE mkold.go
    
    # Make test input files appear to be a minute old.
    exec ./mkold$GOEXE 1m testcache/file.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginSyntheticIntegrationTest.kt

    class PrecompiledScriptPluginSyntheticIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/23564")
        fun `respects offline start parameter on synthetic builds for accessors generation`() {
    
            file("settings.gradle.kts").appendText("""include("producer", "consumer")""")
    
            withKotlinDslPluginIn("producer")
            withFile(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    [issue]: https://github.com/google/guava/issues
    
    Pull requests
    -------------
    
    Unless the change is a trivial fix such as for a typo, it's generally best to
    start by opening a new issue describing the bug or feature you're intending to
    fix. Even if you think it's relatively minor, it's helpful to know what people
    are working on. And as mentioned above, API changes should be discussed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top