Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,224 for clen (0.28 sec)

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

    stderr '^go: too many toolchain switches$'
    
    [short] skip
    
    # Internal env vars should not leak to go test or go run.
    env TESTGO_VERSION_SWITCH=switch
    go version
    stdout go1.21.99
    go test
    stdout clean
    go run .
    stdout clean
    
    -- go.mod --
    module m
    go 1.21.99
    
    -- m_test.go --
    package main
    
    import "testing"
    
    func TestEnv(t *testing.T) {
    	// the check is in func init in m.go
    }
    
    -- m.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:20:23 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/defaultTasks/groovy/build.gradle

    defaultTasks 'clean', 'run'
    
    tasks.register('clean') {
        doLast {
            println 'Default Cleaning!'
        }
    }
    
    tasks.register('run') {
        doLast {
            println 'Default Running!'
        }
    }
    
    tasks.register('other') {
        doLast {
            println "I'm not a default task!"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 283 bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

            conventionPluginBuildFile.exists()
            warSubprojectBuildFile.exists()
            implSubprojectBuildFile.exists()
            apiSubprojectBuildFile.exists()
    
            when:
            run 'clean', 'build'
    
            then: //smoke test the build artifacts
            targetDir.file("webinar-api/build/libs/webinar-api-1.0-SNAPSHOT.jar").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/swift-static-library-task-graph.dot

      check -> build [dir=back]
      compileReleaseSwift -> createRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugSwift -> compileReleaseSwift -> clean [style=invis]
      {rank=same compileDebugSwift compileReleaseSwift clean}
    
      assemble -> empty1 -> empty2 -> check [style=invis]
      {rank=same assemble check empty1 empty2}
      empty1[shape=plain, label=""]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_download_insecure_redirect.txt

    # insecure host
    env GOINSECURE=vcs-test.golang.org
    go clean -modcache
    go mod download vcs-test.golang.org/insecure/go/insecure@latest
    
    # insecure glob host
    env GOINSECURE=*.golang.org
    go clean -modcache
    go mod download vcs-test.golang.org/insecure/go/insecure@latest
    
    # insecure multiple host
    env GOINSECURE=somewhere-else.com,*.golang.org
    go clean -modcache
    go mod download vcs-test.golang.org/insecure/go/insecure@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 934 bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/nativeplatform/NativeParallelPerformanceTest.groovy

    )
    class NativeParallelPerformanceTest extends AbstractCrossBuildPerformanceTest {
    
        def "clean assemble with parallel workers"() {
            given:
            runner.testGroup = 'parallel builds'
            runner.buildSpec {
                displayName("parallel")
                invocation {
                    tasksToRun("clean", "assemble")
                }
            }
            runner.baseline {
                displayName("serial")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. pkg/test/fakes/imageregistry/Makefile

    .PHONY: build build_and_push clean all
    
    MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
    MD_PATH := $(dir $(MKFILE_PATH))
    HUB ?= gcr.io/istio-testing
    IMG := $(HUB)/fake-registry
    BIN_NAME := main
    
    # NOTE: TAG should be updated whenever changes are made in this directory
    # This should also be updated in dependent components
    TAG := 1.3
    
    all: build_and_push clean
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/plugins/LifecycleBasePluginTest.groovy

        public void createsTasksAndAppliesMappings() {
            when:
            project.pluginManager.apply(LifecycleBasePlugin)
    
            then:
            def clean = project.tasks[CLEAN_TASK_NAME]
            clean instanceOf(Delete)
            clean dependsOn()
            clean.group == BUILD_GROUP
            clean.targetFiles.files == [project.buildDir] as Set
    
            and:
            def assemble = project.tasks[ASSEMBLE_TASK_NAME]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go

    	_        uint32
    }
    
    type RawSockaddrUnix struct {
    	Family uint16
    	Path   [108]int8
    }
    
    type RawSockaddrDatalink struct {
    	Family uint16
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [244]int8
    }
    
    type RawSockaddr struct {
    	Family uint16
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [236]int8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

        }
    
        def "clean on Java project with a single source file and no dependencies"() {
            given:
            buildWithSingleSourceFile()
    
            def buildDir = file("build")
            buildDir.mkdirs()
    
            expect:
            configurationCacheRun "clean"
            assertStateStored()
            result.assertTasksExecuted(":clean")
            !buildDir.exists()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top