Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 206 for Shardz (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    Therefore, cacheable tasks should have repeatable task outputs.
    If they don't, then the result of executing the task and loading the task from the cache may be different, which can lead to hard-to-diagnose cache misses.
    
    In some cases even well-trusted tools can produce non-repeatable outputs, and lead to cascading effects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. src/internal/testenv/testenv.go

    	}
    }
    
    // HasLink reports whether the current system can use os.Link.
    func HasLink() bool {
    	// From Android release M (Marshmallow), hard linking files is blocked
    	// and an attempt to call link() on a file will return EACCES.
    	// - https://code.google.com/p/android-developer-preview/issues/detail?id=3150
    	return runtime.GOOS != "plan9" && runtime.GOOS != "android"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/runtime/HACKING.md

    This corresponds to `sync/atomic`, but functions have different names
    for historical reasons and there are a few additional functions needed
    by the runtime.
    
    In general, we think hard about the uses of atomics in the runtime and
    try to avoid unnecessary atomic operations. If access to a variable is
    sometimes protected by another synchronization mechanism, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/os/file_unix.go

    	dir := Getenv("TMPDIR")
    	if dir == "" {
    		if runtime.GOOS == "android" {
    			dir = "/data/local/tmp"
    		} else {
    			dir = "/tmp"
    		}
    	}
    	return dir
    }
    
    // Link creates newname as a hard link to the oldname file.
    // If there is an error, it will be of type *LinkError.
    func Link(oldname, newname string) error {
    	e := ignoringEINTR(func() error {
    		return syscall.Link(oldname, newname)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/apiclient/idempotency.go

    var apiCallRetryInterval = constants.KubernetesAPICallRetryInterval
    
    // TODO: We should invent a dynamic mechanism for this using the dynamic client instead of hard-coding these functions per-type
    
    // CreateOrUpdateConfigMap creates a ConfigMap if the target resource doesn't exist. If the resource exists already, this function will update the resource instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    	"strings"
    )
    
    // An Error describes a type-checking error; it implements the error interface.
    // A "soft" error is an error that still permits a valid interpretation of a
    // package (such as "unused variable"); "hard" errors may lead to unpredictable
    // behavior if ignored.
    type Error struct {
    	Pos  syntax.Pos // error position
    	Msg  string     // default error message, user-friendly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/os/file_plan9.go

    		return nil, nil, NewSyscallError("pipe", e)
    	}
    
    	return NewFile(uintptr(p[0]), "|0"), NewFile(uintptr(p[1]), "|1"), nil
    }
    
    // not supported on Plan 9
    
    // Link creates newname as a hard link to the oldname file.
    // If there is an error, it will be of type *LinkError.
    func Link(oldname, newname string) error {
    	return &LinkError{"link", oldname, newname, syscall.EPLAN9}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadelf/ldelf.go

    	return attr
    }
    
    func (a *elfAttributeList) done() bool {
    	if a.err != nil || len(a.data) == 0 {
    		return true
    	}
    	return false
    }
    
    // Look for the attribute that indicates the object uses the hard-float ABI (a
    // file-level attribute with tag Tag_VFP_arch and value 1). Unfortunately the
    // format used means that we have to parse all of the file-level attributes to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. pkg/volume/fc/fc.go

    	//   globalPDPath : plugins/kubernetes.io/fc/50060e801049cfd1-lun-0
    	var globalPDPath string
    
    	mounter := plugin.host.GetMounter(plugin.GetPluginName())
    	// Try really hard to get the global mount of the volume, an error returned from here would
    	// leave the global mount still mounted, while marking the volume as unused.
    	// The volume can then be mounted on several nodes, resulting in volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * equal to warmupPeriod. And the time to go from thresholdPermits to 0 is warmupPeriod/2. (The
       * reason that this is warmupPeriod/2 is to maintain the behavior of the original implementation
       * where coldFactor was hard coded as 3.)
       *
       * <p>It remains to calculate thresholdsPermits and maxPermits.
       *
       * <ul>
       *   <li>The time to go from thresholdPermits to 0 is equal to the integral of the function
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top