Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,109 for hard (0.05 sec)

  1. .gitignore

    docs/debugging/hash-set/hash-set
    docs/debugging/healing-bin/healing-bin
    docs/debugging/inspect/inspect
    docs/debugging/pprofgoparser/pprofgoparser
    docs/debugging/reorder-disks/reorder-disks
    docs/debugging/populate-hard-links/populate-hardlinks
    docs/debugging/xattr/xattr
    hash-set
    healing-bin
    inspect
    pprofgoparser
    reorder-disks
    s3-check-md5
    s3-verify
    xattr
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 802 bytes
    - Viewed (0)
  2. cmd/namespace-lock_test.go

    	"time"
    )
    
    // WARNING:
    //
    // Expected source line number is hard coded, 35, in the
    // following test. Adding new code before this test or changing its
    // position will cause the line number to change and the test to FAIL
    // Tests getSource().
    func TestGetSource(t *testing.T) {
    	currentSource := func() string { return getSource(2) }
    	gotSource := currentSource()
    	// Hard coded line number, 35, in the "expectedSource" value
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  3. test/fixedbugs/issue11987.go

    // license that can be found in the LICENSE file.
    
    // Issue 11987. The ppc64 SRADCC instruction was misassembled in a way
    // lost bit 5 of the immediate so v>>32 was assembled as v>>0.  SRADCC
    // is only ever inserted by peep so it's hard to be sure when it will
    // be used. This formulation worked when the bug was fixed.
    
    package main
    
    import "fmt"
    
    var v int64 = 0x80000000
    
    func main() {
    	s := fmt.Sprintf("%v", v>>32 == 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 621 bytes
    - Viewed (0)
  4. testing/performance/docs/check-rev.sh

    cp subprojects/performance/build/test-results/performanceTest/TEST-org.gradle.performance.$TESTNAME.xml ~/.gradle-bisect-results/result_${result}_${hash}_${datets}.xml
    git reset --hard
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. src/reflect/deepequal.go

    	}
    
    	// We want to avoid putting more in the visited map than we need to.
    	// For any possible reference cycle that might be encountered,
    	// hard(v1, v2) needs to return true for at least one of the types in the cycle,
    	// and it's safe and valid to get Value's internal pointer.
    	hard := func(v1, v2 Value) bool {
    		switch v1.Kind() {
    		case Pointer:
    			if !v1.typ().Pointers() {
    				// not-in-heap pointers can't be cyclic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/defaults_others.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package eviction
    
    // DefaultEvictionHard includes default options for hard eviction.
    var DefaultEvictionHard = map[string]string{
    	"memory.available":  "100Mi",
    	"nodefs.available":  "10%",
    	"imagefs.available": "15%",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 20:46:56 UTC 2022
    - 828 bytes
    - Viewed (0)
  7. src/runtime/os_linux_generic.go

    //go:build !mips && !mipsle && !mips64 && !mips64le && !s390x && !ppc64 && linux
    
    package runtime
    
    const (
    	_SS_DISABLE  = 2
    	_NSIG        = 65
    	_SIG_BLOCK   = 0
    	_SIG_UNBLOCK = 1
    	_SIG_SETMASK = 2
    )
    
    // It's hard to tease out exactly how big a Sigset is, but
    // rt_sigprocmask crashes if we get it wrong, so if binaries
    // are running, this is right.
    type sigset [2]uint32
    
    var sigset_all = sigset{^uint32(0), ^uint32(0)}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 01:56:24 UTC 2022
    - 870 bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/defaults_linux.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package eviction
    
    // DefaultEvictionHard includes default options for hard eviction.
    var DefaultEvictionHard = map[string]string{
    	"memory.available":   "100Mi",
    	"nodefs.available":   "10%",
    	"nodefs.inodesFree":  "5%",
    	"imagefs.available":  "15%",
    	"imagefs.inodesFree": "5%",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 16:48:53 UTC 2023
    - 887 bytes
    - Viewed (0)
  9. pkg/volume/git_repo/git_repo_test.go

    					dir: "",
    				},
    				{
    					cmd: []string{"git", "checkout", revision},
    					dir: "/target_dir",
    				},
    				{
    					cmd: []string{"git", "reset", "--hard"},
    					dir: "/target_dir",
    				},
    			},
    			isExpectedFailure: false,
    		},
    		{
    			name: "target-dir-no-revision",
    			vol: &v1.Volume{
    				Name: "vol1",
    				VolumeSource: v1.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. guava/src/com/google/common/annotations/VisibleForTesting.java

     * bad design, and it does not prevent anyone from using the declaration---and experience has shown
     * that they will. If the method breaks the encapsulation of its class, then its internal
     * representation will be hard to change. Instead, use <a
     * href="http://errorprone.info/bugpattern/RestrictedApi">RestrictedApiChecker</a>, which enforces
     * fine-grained visibility policies.
     *
     * @author Johannes Henkel
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 30 22:25:16 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top