Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,084 for clean (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/CleanArchiveIntegrationTest.groovy

            """
    
            expect:
            succeeds "clean"
        }
    
        def "clean after unzipping file to cache during configuration phase"() {
            buildFile << """
                plugins {
                    id 'lifecycle-base'
                }
                zipTree(file("hello.zip")).files
            """
    
            expect:
            succeeds "clean"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. tools/packaging/common/istio-start.sh

    fi
    
    if [ -z "${POD_NAME:-}" ]; then
      POD_NAME=$(hostname -s)
    fi
    
    if [[ ${1-} == "clean" ]] ; then
      if [ "${ISTIO_CUSTOM_IP_TABLES}" != "true" ] ; then
        # clean the previous Istio iptables chains.
        "${ISTIO_BIN_BASE}/pilot-agent" istio-clean-iptables
      fi
      exit 0
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. .teamcity/performance-tests-ci.json

          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.android.RealLifeAndroidBuildPerformanceTest.clean assembleDebug with clean transforms cache",
        "groups" : [ {
          "testProject" : "largeAndroidBuild",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "nowInAndroidBuild",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/internal/str/str_test.go

    		}
    
    		if HasFilePathPrefix(tt.s, tt.prefix) {
    			joined := filepath.Join(tt.prefix, got)
    			if clean := filepath.Clean(tt.s); joined != clean {
    				t.Errorf("filepath.Join(%q, %q) = %q, want %q", tt.prefix, got, joined, clean)
    			}
    		}
    	}
    }
    
    func TestTrimFilePathPrefixWindows(t *testing.T) {
    	if runtime.GOOS != "windows" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 16:49:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/go/testdata/script/build_cache_gomips.txt

    env GOARCH=mipsle
    env GOOS=linux
    go build -gcflags=-S f.go
    stderr ADDD.F[0-9]+,.F[0-9]+,.F[0-9]+
    
    # Clean cache
    go clean -cache
    
    # Building with GOMIPS=softfloat will not use floating point registers
    env GOMIPS=softfloat
    go build -gcflags=-S f.go
    ! stderr ADDD.F[0-9]+,.F[0-9]+,.F[0-9]+
    
    # Clean cache
    go clean -cache
    
    # Build without setting GOMIPS
    env GOMIPS=
    go build -gcflags=-S f.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 859 bytes
    - Viewed (0)
  10. 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)
Back to top