Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for clen (0.05 sec)

  1. src/cmd/go/alldocs.go

    //
    // See also: go install, go get, go clean.
    //
    // # Remove object files and cached files
    //
    // Usage:
    //
    //	go clean [clean flags] [build flags] [packages]
    //
    // Clean removes object files from package source directories.
    // The go command builds most objects in a temporary directory,
    // so go clean is mainly concerned with object files left by other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	}
    
    	if p.Module == nil {
    		parent := p.Dir[:i+len(p.Dir)-len(p.ImportPath)]
    
    		if str.HasFilePathPrefix(filepath.Clean(srcDir), filepath.Clean(parent)) {
    			return nil
    		}
    
    		// Look for symlinks before reporting error.
    		srcDir = expandPath(srcDir)
    		parent = expandPath(parent)
    		if str.HasFilePathPrefix(filepath.Clean(srcDir), filepath.Clean(parent)) {
    			return nil
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	metrics.DesiredPodCount.WithLabelValues("").Set(float64(len(allRegularPods)))
    	metrics.DesiredPodCount.WithLabelValues("true").Set(float64(len(allStaticPods)))
    	metrics.ActivePodCount.WithLabelValues("").Set(float64(len(activeRegularPods)))
    	metrics.ActivePodCount.WithLabelValues("true").Set(float64(len(activeStaticPods)))
    	metrics.MirrorPodCount.Set(float64(len(mirrorPods)))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    				}
    			}()
    
    			// if pluginDevicePath is provided, assume attacher may not provide device
    			// or attachment flow uses SetupDevice to get device path
    			if len(pluginDevicePath) != 0 {
    				devicePath = pluginDevicePath
    			}
    			if len(devicePath) == 0 {
    				eventErr, detailedErr := volumeToMount.GenerateError("MapVolume failed", goerrors.New("device path of the volume is empty"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

                : AndroidPluginExpectations8.EXPECTED_RESULTS_8_4
            verify(result, expectedResults)
    
            when: 'clean cached build, reusing configuration cache when enabled'
            runnerForLocation(relocatedDir, agpVersion, "clean").build()
            SantaTrackerConfigurationCacheWorkaround.beforeBuild(relocatedDir, homeDir)
            result = buildCachedLocation(relocatedDir, agpVersion)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CacheTest.kt

          -1
    
          """.trimIndent()
        val entryBody = "abc"
        val journalBody = """libcore.io.DiskLruCache
    1
    201105
    2
    
    CLEAN $urlKey ${entryMetadata.length} ${entryBody.length}
    """
        fileSystem.createDirectory(cache.directoryPath)
        writeFile(cache.directoryPath, "$urlKey.0", entryMetadata)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            executer.withTasks("help").start().waitForFinish()
    
            then:
            outputDir1.assertDoesNotExist()
            outputDir2.assertExists()
        }
    
        def "does not clean up cache when retention is configured greater than the default"() {
            given:
            buildFile << declareAttributes() << multiProjectWithJarSizeTransform()
            ["lib1", "lib2"].each { name ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  8. src/net/http/server.go

    	if p == "" {
    		return "/"
    	}
    	if p[0] != '/' {
    		p = "/" + p
    	}
    	np := path.Clean(p)
    	// path.Clean removes trailing slash except for root;
    	// put the trailing slash back if necessary.
    	if p[len(p)-1] == '/' && np != "/" {
    		// Fast path for common case of p being the string we want:
    		if len(p) == len(np)+1 && strings.HasPrefix(p, np) {
    			np = p
    		} else {
    			np += "/"
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

        find-release-tars
        upload-tars
      elif [[ ${KUBE_VERSION} =~ ${KUBE_RELEASE_VERSION_REGEX} ]]; then
        SERVER_BINARY_TAR_URL="https://dl.k8s.io/release/${KUBE_VERSION}/kubernetes-server-linux-amd64.tar.gz"
        # TODO: Clean this up.
        KUBE_MANIFESTS_TAR_URL="${SERVER_BINARY_TAR_URL/server-linux-amd64/manifests}"
        KUBE_MANIFESTS_TAR_HASH=$(curl -L "${KUBE_MANIFESTS_TAR_URL}" --silent --show-error | ${sha512sum})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework_test.go

    		r[queueSortPlugin] = newQueueSortPlugin
    	}
    	if _, ok := r[bindPlugin]; !ok {
    		r[bindPlugin] = newBindPlugin
    	}
    
    	if len(profile.Plugins.QueueSort.Enabled) == 0 {
    		profile.Plugins.QueueSort.Enabled = append(profile.Plugins.QueueSort.Enabled, config.Plugin{Name: queueSortPlugin})
    	}
    	if len(profile.Plugins.Bind.Enabled) == 0 {
    		profile.Plugins.Bind.Enabled = append(profile.Plugins.Bind.Enabled, config.Plugin{Name: bindPlugin})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
Back to top