Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,291 for _run (0.05 sec)

  1. src/cmd/go/internal/base/base.go

    	fmt.Fprintf(os.Stderr, "usage: %s\n", c.UsageLine)
    	fmt.Fprintf(os.Stderr, "Run 'go help %s' for details.\n", c.LongName())
    	SetExitStatus(2)
    	Exit()
    }
    
    // Runnable reports whether the command can be run; otherwise
    // it is a documentation pseudo-command such as importpath.
    func (c *Command) Runnable() bool {
    	return c.Run != nil
    }
    
    var atExitFuncs []func()
    
    func AtExit(f func()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. .github/workflows/build-docs.yml

            if: steps.cache.outputs.cache-hit != 'true'
            run: pip install -r requirements-docs.txt
          # Install MkDocs Material Insiders here just to put it in the cache for the rest of the steps
          - name: Install Material for MkDocs Insiders
            if: ( github.event_name != 'pull_request' || github.secret_source == 'Actions' ) && steps.cache.outputs.cache-hit != 'true'
            run: |
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/crossVersionTest/groovy/org/gradle/jvm/toolchain/internal/install/ProvisionedJdkReuseCrossVersionIntegrationTest.groovy

            then:
            def previousJavaHome = getPrintedJavaHome(result)
            previousJavaHome.startsWith(jdkDir)
    
            and:
            jdkRepository.expectHead()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. .github/workflows/publish.yml

          - name: Install build dependencies
            run: pip install build
          - name: Build distribution
            env:
              TIANGOLO_BUILD_PACKAGE: ${{ matrix.package }}
            run: python -m build
          - name: Publish
            uses: pypa/gh-action-pypi-publish@v1.8.14
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 30 06:38:13 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. hack/make-rules/verify.sh

    SILENT=${SILENT:-false}
    QUICK=${QUICK:-false}
    
    if ${SILENT} ; then
      echo "Running in silent mode, run with SILENT=false if you want to see script logs."
    fi
    
    if ${QUICK} ; then
      echo "Running in quick mode (QUICK=true). Only fast checks will run."
    fi
    
    ret=0
    run-checks "${KUBE_ROOT}/hack/verify-*.sh" bash
    run-checks "${KUBE_ROOT}/hack/verify-*.py" python3
    missing-target-checks
    
    if [[ ${ret} -eq 1 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

                build.forTasks(":other-build:sub:test").run()
            }
            TestOperationDescriptor descriptor = collector.descriptors.find { it.name == "myTestMethod" }
    
            when:
            withConnection { connection ->
                TestLauncher launcher = connection.newTestLauncher().withTests(descriptor)
                collectOutputs(launcher)
                launcher.run()
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r54/RunEclipseAutoBuildTasksCrossVersionSpec.groovy

                project(":sub") {
                    apply plugin: 'eclipse'
    
                    task bar {
                    }
                }
            """
            settingsFile << "include 'sub'"
        }
    
        def "can run tasks upon Eclipse auto-build"() {
            setup:
            buildFile << "eclipse { autoBuildTasks 'foo' }"
    
            def projectsLoadedHandler = new IntermediateResultHandlerCollector<Void>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEnablementIntegrationTest.groovy

        ConfigurationCacheFixture fixture = new ConfigurationCacheFixture(this)
    
        def "can enable with a command line #origin"() {
            when:
            run 'help', argument
    
            then:
            fixture.assertStateStored()
    
            when:
            run 'help', argument
    
            then:
            fixture.assertStateLoaded()
    
            where:
            origin            | argument
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperLoggingIntegrationTest.groovy

            when:
            args '-q'
            result = wrapperExecuter.withTasks("emptyTask").run()
    
            then:
            result.output.empty
        }
    
        def "wrapper renders welcome message when executed the first time"() {
            given:
            prepareWrapper()
    
            when:
            result = wrapperExecuter.withTasks("emptyTask").run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BasicTypeInitIntegrationTest.groovy

        String subprojectName() { null }
    
        def "defaults to kotlin build scripts"() {
            when:
            run 'init'
    
            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
        def "incubating does not break basic #scriptDsl build scripts"() {
            when:
            run('init', '--project-name', 'someApp', '--dsl', scriptDsl.id, '--incubating')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top