Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 99 for clen (0.04 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    	}
    }
    
    // cleanOrphanVolumes tries to clean up all volumes that failed reconstruction.
    func (rc *reconciler) cleanOrphanVolumes() {
    	if len(rc.volumesFailedReconstruction) == 0 {
    		return
    	}
    
    	for _, volume := range rc.volumesFailedReconstruction {
    		if rc.desiredStateOfWorld.VolumeExistsWithSpecName(volume.podName, volume.volumeSpecName) {
    			// Some pod needs the volume, don't clean it up and hope that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. docker/Dockerfile.base

      iputils-ping \
      knot-dnsutils \
      netcat-openbsd \
      tcpdump \
      conntrack \
      bsdmainutils \
      net-tools \
      lsof \
      sudo \
      && update-ca-certificates \
      && apt-get upgrade -y \
      && apt-get clean \
      && rm -rf  /var/log/*log /var/lib/apt/lists/* /var/log/apt/* /var/lib/dpkg/*-old /var/cache/debconf/*-old \
      && update-alternatives --set iptables /usr/sbin/iptables-legacy \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryStoreTest.groovy

            then:
            gcFile.lastModified() > modificationTimeBefore
            1 * cacheCleanup.cleanupAction >> cleanupAction
            1 * cacheCleanup.cleanupFrequency >> CleanupFrequency.DAILY
            1 * cleanupAction.clean(store, _)
            0 * _
        }
    
        def "fails gracefully if cleanup action fails"() {
            when:
            store.open()
            store.close()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. pkg/test/echo/docker/Dockerfile.app_sidecar_base

        iputils-ping \
        knot-dnsutils \
        netcat-openbsd \
        tcpdump \
        conntrack \
        bsdmainutils \
        net-tools \
        lsof \
        sudo \
        && apt-get upgrade -y \
        && apt-get clean \
        && rm -rf  /var/log/*log /var/lib/apt/lists/* /var/log/apt/* /var/lib/dpkg/*-old /var/cache/debconf/*-old
    
    RUN if [ -f /usr/sbin/iptables-legacy ]; then \
        update-alternatives --set iptables /usr/sbin/iptables-legacy && \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/cleanup.go

    	}()
    
    	if i.cfg.DumpKubernetesManifests {
    		i.installer.Dump(i.ctx)
    	}
    
    	if i.cfg.DeployIstio {
    		errG := multierror.Group{}
    		// Make sure to clean up primary clusters before remotes, or istiod will recreate some of the CMs that we delete
    		// in the remote clusters before it's deleted.
    		for _, c := range i.ctx.AllClusters().Primaries() {
    			i.cleanupCluster(c, &errG)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/CleanAcceptedApiChanges.groovy

    abstract class CleanAcceptedApiChanges extends DefaultTask {
    
        @PathSensitive(PathSensitivity.ABSOLUTE)
        @InputDirectory
        abstract DirectoryProperty getJsonFileDirectory()
    
        @TaskAction
        void clean() {
            def jsonFileManager = new AcceptedApiChangesJsonFileManager()
            jsonFileDirectory.asFile.get().listFiles()
                ?.findAll { it.name.endsWith(".json") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:27:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/internal/filepathlite/path_windows.go

    		// part of the volume name, which means Clean(`\\?\c:\`)
    		// won't remove the trailing \. (See #64028.)
    		if len(path) == 3 {
    			return 3 // exactly \\.
    		}
    		_, rest, ok := cutPath(path[4:])
    		if !ok {
    			return len(path)
    		}
    		return len(path) - len(rest) - 1
    
    	case len(path) >= 2 && IsPathSeparator(path[1]):
    		// Path starts with \\, and is a UNC path.
    		return uncLen(path, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    1. Clean the cache directory to avoid any hits from previous builds (`rm -rf $GRADLE_USER_HOME/caches/build-cache-*`)
    2. Run the build (e.g. `./gradlew --build-cache clean assemble`), so that all the results from cacheable tasks get stored in the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

            steps {
                gradleWrapper {
                    name = "FLAKY_TEST_QUARANTINE_${testCoverage.testType.name.uppercase()}_${testCoverage.testJvmVersion.name.uppercase()}"
                    tasks = "${if (index == 0) "clean " else ""}${testCoverage.testType.name}Test"
                    gradleParams = parameters
                    executionMode = BuildStep.ExecutionMode.ALWAYS
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/unique/handle.go

    	// on those allocations.
    	uniqueMaps = concurrent.NewHashTrieMap[*abi.Type, any]() // any is always a *uniqueMap[T].
    
    	// cleanupFuncs are functions that clean up dead weak pointers in type-specific
    	// maps in uniqueMaps. We express cleanup this way because there's no way to iterate
    	// over the sync.Map and call functions on the type-specific data structures otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top