Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,084 for clean (0.04 sec)

  1. src/cmd/go/internal/clean/clean.go

    distinct from those stored in testdata directory; clean does not remove
    those files.
    
    For more about build flags, see 'go help build'.
    
    For more about specifying packages, see 'go help packages'.
    	`,
    }
    
    var (
    	cleanI         bool // clean -i flag
    	cleanR         bool // clean -r flag
    	cleanCache     bool // clean -cache flag
    	cleanFuzzcache bool // clean -fuzzcache flag
    	cleanModcache  bool // clean -modcache flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. build/make-clean.sh

    # limitations under the License.
    
    # Clean out the output directory on the docker host.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/build/common.sh"
    
    kube::build::verify_prereqs false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:33:28 UTC 2019
    - 845 bytes
    - Viewed (0)
  3. hack/make-rules/clean.sh

    Tim Hockin <******@****.***> 1685038706 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 08 17:20:44 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. cni/test/testdata/expected/minikube_cni.conflist.clean

    John Howard <******@****.***> 1605827959 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 23:19:19 UTC 2020
    - 468 bytes
    - Viewed (0)
  5. maven-core/src/test/remote-repo/org/apache/maven/plugins/maven-clean-plugin/0.1/maven-clean-plugin-0.1.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-clean-plugin 0.1 clean false true clean Does nothing. false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session org.apache.maven maven-plugin-api jar 2.0 org/apache/maven/plugin/coreit/ItMojo.class package org.apache.maven.plugin.coreit;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 6.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-clean-plugin/0.1/maven-clean-plugin-0.1.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-clean-plugin 0.1 clean false true clean Does nothing. false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session org.apache.maven maven-plugin-api jar 2.0 org/apache/maven/plugin/coreit/ItMojo.class package org.apache.maven.plugin.coreit;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-clean-plugin/0.1/maven-clean-plugin-0.1.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-clean-plugin</artifactId>
      <version>0.1</version>
      <packaging>maven-plugin</packaging>
    
      <name>Maven Integration Test Plugin</name>
      <description>
        A test plugin to assist testing of Maven core.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. maven-core/src/test/remote-repo/org/apache/maven/plugins/maven-clean-plugin/0.1/maven-clean-plugin-0.1.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-clean-plugin</artifactId>
      <version>0.1</version>
      <packaging>maven-plugin</packaging>
    
      <name>Maven Integration Test Plugin</name>
      <description>
        A test plugin to assist testing of Maven core.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  9. src/sync/map_reference_test.go

    	clean, _ := m.clean.Load().(map[any]any)
    	for k, v := range clean {
    		if !f(k, v) {
    			break
    		}
    	}
    }
    
    func (m *DeepCopyMap) dirty() map[any]any {
    	clean, _ := m.clean.Load().(map[any]any)
    	dirty := make(map[any]any, len(clean)+1)
    	for k, v := range clean {
    		dirty[k] = v
    	}
    	return dirty
    }
    
    func (m *DeepCopyMap) Clear() {
    	m.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_clean_cache.txt

    # 'go clean -r -modcache' should clean only the dependencies that are within the
    # main module.
    # BUG(golang.org/issue/28680): Today, it cleans across module boundaries.
    cd r
    exists ./test.out
    exists ../replaced/test.out
    go clean -r -modcache
    ! exists ./test.out
    ! exists ../replaced/test.out  # BUG: should still exist
    
    # 'go clean -modcache' should not download anything before cleaning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top