Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,250 for clean (0.05 sec)

  1. src/go/doc/reader.go

    	noteCommentRx = lazyregexp.New(`^/[/*][ \t]*` + noteMarker) // MARKER(uid) at comment start
    )
    
    // clean replaces each sequence of space, \r, or \t characters
    // with a single space and removes any trailing and leading spaces.
    func clean(s string) string {
    	var b []byte
    	p := byte(' ')
    	for i := 0; i < len(s); i++ {
    		q := s[i]
    		if q == '\r' || q == '\t' {
    			q = ' '
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    Tasks runnable from project ':app'
    ------------------------------------------------------------
    
    Build tasks
    -----------
    assemble - Assembles the outputs of this project.
    build - Assembles and tests this project.
    clean - Deletes the build directory.
    
    Help tasks
    ----------
    buildEnvironment - Displays all buildscript dependencies declared in project ':app'.
    dependencies - Displays all dependencies declared in project ':app'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/build.go

    in the last two paragraphs. If the named output is an existing directory or
    ends with a slash or backslash, then any resulting executables
    will be written to that directory.
    
    The build flags are shared by the build, clean, get, install, list, run,
    and test commands:
    
    	-C dir
    		Change to dir before running the command.
    		Any files named on the command line are interpreted after
    		changing directories.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

       * <p>Note: in principle this should never need to be used, but it might be useful if the
       * semantics of an implementation disagree in unforeseen ways with the semantics expected by a
       * test, or to keep dependent builds clean in spite of an erroneous test.
       */
      @CanIgnoreReturnValue
      public B suppressing(Method... methods) {
        return suppressing(Arrays.asList(methods));
      }
    
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/read.go

    	for i := 0; i < m.n; i++ {
    		f(m.pkgDir(i))
    	}
    }
    
    // relPath returns the path relative to the module's root.
    func relPath(path, modroot string) string {
    	return str.TrimFilePathPrefix(filepath.Clean(path), filepath.Clean(modroot))
    }
    
    var installgorootAll = godebug.New("installgoroot").Value() == "all"
    
    // Import is the equivalent of build.Import given the information in Module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. pkg/volume/local/local.go

    	fs := v1.PersistentVolumeFilesystem
    	// The main purpose of reconstructed volume is to clean unused mount points
    	// and directories.
    	// For filesystem volume with directory source, no global mount path is
    	// needed to clean. Empty path is ok.
    	// For filesystem volume with block source, we should resolve to its device
    	// path if global mount path exists.
    	var path string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. pkg/controller/deployment/rolling.go

    	newRSUnavailablePodCount := *(newRS.Spec.Replicas) - newRS.Status.AvailableReplicas
    	maxScaledDown := allPodsCount - minAvailable - newRSUnavailablePodCount
    	if maxScaledDown <= 0 {
    		return false, nil
    	}
    
    	// Clean up unhealthy replicas first, otherwise unhealthy replicas will block deployment
    	// and cause timeout. See https://github.com/kubernetes/kubernetes/issues/16737
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

        }
    
        def getDisableStateTrackingLink() {
            documentationRegistry.getDocumentationRecommendationFor("information", "incremental_build", "sec:disable-state-tracking")
        }
    
        def "does not clean up stale outputs for untracked tasks"() {
            def untrackedStaleFile = file("build/untracked/stale-output-file").createFile()
            def untrackedOutputFile = file("build/untracked/output.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransaction.java

        }
    
        private void ensureEmptyDirectoriesBeforeExecution() {
            try {
                tempDir.mkdirs();
    
                // Create or clean stash and stage directories
                Set<File> ensureEmptyDirectories = new HashSet<>();
                deleter.ensureEmptyDirectory(stashDirectory);
                ensureEmptyDirectories.add(stashDirectory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    c:\home\Brett\cvs\maven-2\maven-components-release\maven-plugin-api\src\test\resources c:\home\Brett\cvs\maven-2\maven-components-release\maven-plugin-api\target maven-plugin-api-2.0 maven-release-plugin https://svn.apache.org/repos/asf/maven/components/tags maven-clean-plugin 2.0-rc2-SNAPSHOT maven-compiler-plugin 2.0-beta-2-SNAPSHOT maven-deploy-plugin 2.0-beta-1 true true maven-install-plugin 2.0-beta-2-SNAPSHOT maven-jar-plugin 2.0-rc2-SNAPSHOT maven-javadoc-plugin 2.0-beta-2-SNAPSHOT attach-javadocs jar true...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top