Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,138 for clean (1.03 sec)

  1. build/lib/release.sh

    # Build final release artifacts
    function kube::release::clean_cruft() {
      # Clean out cruft
      find "${RELEASE_STAGE}" -name '*~' -exec rm {} \;
      find "${RELEASE_STAGE}" -name '#*#' -exec rm {} \;
      find "${RELEASE_STAGE}" -name '.DS*' -exec rm {} \;
    }
    
    function kube::release::package_tarballs() {
      # Clean out any old releases
      rm -rf "${RELEASE_STAGE}" "${RELEASE_TARS}" "${RELEASE_IMAGES}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

                    destinationDirectory = buildDir
                    archiveFileName = 'test.war'
                    outputs.cacheIf { true }
                }
            """
    
            when:
            withBuildCache().run "clean", "war"
    
            then:
            executedAndNotSkipped ':war'
    
            and:
            def war = new JarTestFixture(file('build/test.war'))
            war.assertContainsFile('META-INF/MANIFEST.MF')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    Developers can always re-run the build with `clean`, and "fix" their builds for the price of a slow rebuild.
    In the end nobody gets blocked in their work, and the incident is chalked up to "Gradle acting up again."
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

             * Not clean up global Gradle processes (i.e. classpath in ~/.gradle/...).
             */
            KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS,
            /**
             * Run at the end of each build. Kill potentially leaked processes in the current build.
             * Only kill local Gradle processes (classpath in checkout directory).
             * Not clean up global Gradle processes (i.e. classpath in ~/.gradle/...).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. tests/integration/operator/switch_cr_test.go

    	scopes.Framework.Infof("cleaning up resources")
    	// clean up Istio control plane
    	unInstallCmd := []string{
    		"uninstall", "--purge", "--skip-confirmation",
    	}
    	out, _ := istioCtl.InvokeOrFail(t, unInstallCmd)
    	t.Logf("uninstall command output: %s", out)
    	// clean up operator namespace
    	if err := cs.Kube().CoreV1().Namespaces().Delete(context.TODO(), OperatorNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_outside.txt

    ! go list -m rsc.io/quote/...
    stderr 'go: cannot match "rsc.io/quote/...": go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    
    # 'go clean' should skip the current directory if it isn't in a module.
    go clean -n
    ! stdout .
    ! stderr .
    
    # 'go mod graph' should fail, since there's no module graph.
    ! go mod graph
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/QueuesTest.java

          assertThat(drained).isAtMost(1);
    
          assertThat(timer.elapsed(MILLISECONDS)).isAtLeast(10L);
    
          // If even the first one wasn't there, clean up so that the next test doesn't see an element.
          producerThread.cancel(true);
          producer.doneProducing.await();
          if (drained == 0) {
            q.poll(); // not necessarily there if producer was interrupted
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. internal/logger/logger.go

    	sort.Strings(paths)
    	n := uniq(sort.StringSlice(paths))
    	return paths[:n]
    }
    
    // Init sets the trimStrings to possible GOPATHs
    // and GOROOT directories. Also append github.com/minio/minio
    // This is done to clean up the filename, when stack trace is
    // displayed when an error happens.
    func Init(goPath string, goRoot string) {
    	var goPathList []string
    	var goRootList []string
    	var defaultgoPathList []string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    ==== Disabling merging with a complete overwrite
    
    To completely rewrite existing IDEA files, execute a clean task together with its corresponding generation task, like “`gradle cleanIdea idea`” (in that order). If you want to make this the default behavior, add “`tasks.idea.dependsOn(cleanIdea)`” to your build script. This makes it unnecessary to execute the clean task explicitly.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. hack/golangci.yaml

              #
              # Remember to clean the golangci-lint cache when changing the configuration and
              # running the verify-golangci-lint.sh script multiple times, otherwise
              # golangci-lint will report stale results:
              #    _output/local/bin/golangci-lint cache clean
              
              # At this point we don't enforce the usage structured logging calls except in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top