Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for north (0.15 sec)

  1. cmd/os-reliable.go

    				i++
    				// Determine if os.NotExist error is because of
    				// baseDir's parent being present, retry it once such
    				// that the MkdirAll is retried once for the parent
    				// of dirPath.
    				// Because it is worth a retry to skip a different
    				// baseDir which is slightly higher up the depth.
    				nbaseDir := path.Dir(baseDir)
    				if baseDir != "" && nbaseDir != "" && nbaseDir != SlashSeparator {
    					baseDir = nbaseDir
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/unique/handle.go

    	// possible (for example, for strings and plain-ol'-data structs). We also get the
    	// benefit of not cramming every different type into a single map, but that's certainly
    	// not enough to outweigh the cost of two map lookups. What is worth it though, is saving
    	// 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. operator/pkg/util/progress/progress.go

    	maxWidth -= 2
    	if maxWidth > 0 && len(msg) > maxWidth {
    		return prefix + msg[:maxWidth-3] + "..."
    	}
    	// cycle will alternate between "-" and " ". "-" is given multiple times to avoid quick flashing back and forth
    	return prefix + msg
    }
    
    // For testing only
    var testWriter *io.Writer
    
    func createBar() *pb.ProgressBar {
    	// Don't set a total and use Static so we can explicitly control when you write. This is needed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/InstrumentationAnalysisTransform.java

     * [class name 1]=[super type 1],[super type 2],...<br>
     * [class name 2]=[super type 1],[super type 2],...<br>
     * ...
     */
    @DisableCachingByDefault(because = "Not worth caching.")
    public abstract class InstrumentationAnalysisTransform implements TransformAction<InstrumentationAnalysisTransform.Parameters> {
    
        private static boolean isTypeAccepted(String type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:19:14 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. hack/golangci-strict.yaml

          path-except: cmd/kubeadm
    
        # The following issues were deemed "might be worth fixing, needs to be
        # decided on a case-by-case basis".  This was initially decided by a
        # majority of the developers who voted in
        # https://github.com/kubernetes/kubernetes/issues/117288 and may evolve
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. docs/en/docs/features.md

    You will get completion in code you might even consider impossible before. As for example, the `price` key inside a JSON body (that could have been nested) that comes from a request.
    
    No more typing the wrong key names, coming back and forth between docs, or scrolling up and down to find if you finally used `username` or `user_name`.
    
    ### Short
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    As with any cache, the impact should therefore be measured over time.
    
    In a setup where a team uses a shared cache backend, there are two locations worth measuring cache impact at: on CI and on developer machines.
    
    == Cache impact on CI builds
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top