Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for Shardz (0.13 sec)

  1. pkg/kubelet/container/runtime.go

    	// gracePeriodOverride if specified allows the caller to override the pod default grace period.
    	// only hard kill paths are allowed to specify a gracePeriodOverride in the kubelet in order to not corrupt user data.
    	// it is useful when doing SIGKILL for hard eviction scenarios, or max grace period during soft eviction scenarios.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                result = connection.receive();
            } catch (StaleDaemonAddressException e) {
                LOGGER.debug("Connected to a stale daemon address.", e);
                // We might fail hard here on the assumption that something weird happened to the daemon.
                // However, since we haven't yet started running the build, we can recover by just trying again.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	// timeouts to cancel existing streams. 3 is currently a hard coded
    	// constant. The election timeout defaults to 1000ms. If the cluster is
    	// healthy, when the leader is stopped, the leadership transfer should be
    	// smooth. (leader transfers its leadership before stopping). If leader is
    	// hard killed, other servers will take an election timeout to realize
    	// leader lost and start campaign.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    	if o := pkg.Scope().Lookup(name); o != nil {
    		return []types.Object{o}
    	}
    
    	var ret []types.Object
    	// Search through the imports to see if any of them define name.
    	// It's hard to tell in general which package is being tested, so
    	// for the purposes of the analysis, allow the object to appear
    	// in any of the imports. This guarantees there are no false positives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. src/os/file_windows.go

    			// Do nothing for path, like C:\.
    		} else if n > 0 && b[n-1] == '\\' {
    			// Otherwise remove terminating \.
    			n--
    		}
    		return syscall.UTF16ToString(b[:n])
    	}
    }
    
    // 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 {
    	n, err := syscall.UTF16PtrFromString(fixLongPath(newname))
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactHashMap.java

       * world. Figure out what sort of space-time tradeoff we're actually going to get here with the
       * *Map variants. This class is particularly hard to benchmark, because the benefit is not only in
       * less allocation, but also having the GC do less work to scan the heap because of fewer
       * references, which is particularly hard to quantify.
       */
    
      /** Creates an empty {@code CompactHashMap} instance. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/CompactHashMap.java

       * world. Figure out what sort of space-time tradeoff we're actually going to get here with the
       * *Map variants. This class is particularly hard to benchmark, because the benefit is not only in
       * less allocation, but also having the GC do less work to scan the heap because of fewer
       * references, which is particularly hard to quantify.
       */
    
      /** Creates an empty {@code CompactHashMap} instance. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  8. src/net/netip/netip.go

    		}
    	}
    	return Addr{}, parseAddrError{in: s, msg: "unable to parse IP"}
    }
    
    // MustParseAddr calls [ParseAddr](s) and panics on error.
    // It is intended for use in tests with hard-coded strings.
    func MustParseAddr(s string) Addr {
    	ip, err := ParseAddr(s)
    	if err != nil {
    		panic(err)
    	}
    	return ip
    }
    
    type parseAddrError struct {
    	in  string // the string given to ParseAddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. src/runtime/alg.go

    		initAlgAES()
    		return
    	}
    	for i := range hashkey {
    		hashkey[i] = uintptr(bootstrapRand())
    	}
    }
    
    func initAlgAES() {
    	useAeshash = true
    	// Initialize with random data so hash collisions will be hard to engineer.
    	key := (*[hashRandomBytes / 8]uint64)(unsafe.Pointer(&aeskeysched))
    	for i := range key {
    		key[i] = bootstrapRand()
    	}
    }
    
    // Note: These routines perform the read with a native endianness.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. 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)
Back to top