Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,101 for clen (0.28 sec)

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

    go list -x .
    ! stderr 'creating work dir'
    stdout m
    go list -m all
    stdout m
    ! go list -x -export .
    stderr '^go: creating work dir: \w+ '$GOTMPDIR
    
    # 'go clean -cache' and 'go clean -modcache' should not fail.
    go clean -x -cache
    ! stderr 'creating work dir'
    go clean -x -modcache
    ! stderr 'creating work dir'
    
    # 'go env' should not fail for specific variables.
    # Without arguments, it needs to initialize a builder to load cgo flags, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/maven/JavaTestGradleVsMavenPerformanceTest.groovy

        def "clean #gradleTask (Gradle vs Maven)"() {
            given:
            runner.testGroup = "Gradle vs Maven test build using Java plugin"
            configureMavenOptions(JavaTestProject.projectFor(runner.testProject))
            runner.gradleTasks = ["clean", gradleTask]
            runner.equivalentMavenTasks = ["clean", mavenTask]
            if (mavenTask == "package") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. .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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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