Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for HI (0.64 sec)

  1. src/runtime/panic.go

    	// binaries. (Admittedly, both of these are modest savings.)
    
    	// Ensure we're recovering within the appropriate stack.
    	if sp != 0 && (sp < gp.stack.lo || gp.stack.hi < sp) {
    		print("recover: ", hex(sp), " not in [", hex(gp.stack.lo), ", ", hex(gp.stack.hi), "]\n")
    		throw("bad recovery")
    	}
    
    	// Make the deferproc for this d return again,
    	// this time returning 1. The calling function will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    		d := time.Duration(total)
    		lo := time.Duration(N * D * 9 / 10)
    		hi := time.Duration(N) * blockMutexNTime * 11 / 10
    		if d < lo || d > hi {
    			for _, s := range p.Sample {
    				t.Logf("sample: %s", time.Duration(s.Value[i]))
    			}
    			t.Fatalf("profile samples total %v, want within range [%v, %v] (target: %v)", d, lo, hi, N*D)
    		}
    	})
    }
    
    func TestMutexProfileRateAdjust(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. src/archive/tar/writer_test.go

    				Format:  FormatGNU,
    			}, nil},
    			testClose{nil},
    		},
    	}, {
    		file: "testdata/gnu-not-utf8.tar",
    		tests: []testFnc{
    			testHeader{Header{
    				Typeflag: TypeReg,
    				Name:     "hi\x80\x81\x82\x83bye",
    				Mode:     0644,
    				Uid:      1000,
    				Gid:      1000,
    				Uname:    "rawr",
    				Gname:    "dsnet",
    				ModTime:  time.Unix(0, 0),
    				Format:   FormatGNU,
    			}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		}
    
    		if lo != hi && n.FrameOffset()+n.Type().Size() >= lo-int64(2*types.RegSize) {
    			// Merge with range we already have.
    			lo = n.FrameOffset()
    			continue
    		}
    
    		// Zero old range
    		p = Arch.ZeroRange(pp, p, frame+lo, hi-lo, &state)
    
    		// Set new range.
    		lo = n.FrameOffset()
    		hi = lo + n.Type().Size()
    	}
    
    	// Zero final range.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/os/os_test.go

    	}
    }
    
    func TestChtimesToUnixZero(t *testing.T) {
    	file := newFile("chtimes-to-unix-zero", t)
    	fn := file.Name()
    	defer Remove(fn)
    	if _, err := file.Write([]byte("hi")); err != nil {
    		t.Fatal(err)
    	}
    	if err := file.Close(); err != nil {
    		t.Fatal(err)
    	}
    
    	unixZero := time.Unix(0, 0)
    	if err := Chtimes(fn, unixZero, unixZero); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. src/os/os_windows_test.go

    	if err != nil {
    		t.Fatalf("Unable to duplicate stdin: %v", err)
    	}
    	testConsole := os.NewConsoleFile(stdinDuplicate, "test")
    
    	var tests = []string{
    		"abc",
    		"äöü",
    		"\u3042",
    		"“hi”™",
    		"hello\x1aworld",
    		"\U0001F648\U0001F649\U0001F64A",
    	}
    
    	for _, consoleSize := range []int{1, 2, 3, 10, 16, 100, 1000} {
    		for _, readSize := range []int{1, 2, 3, 4, 5, 8, 10, 16, 20, 50, 100} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  7. src/net/http/clientserver_test.go

    	}
    }
    
    func TestH12_ServerEmptyContentLength(t *testing.T) {
    	h12Compare{
    		Handler: func(w ResponseWriter, r *Request) {
    			w.Header()["Content-Type"] = []string{""}
    			io.WriteString(w, "<html><body>hi</body></html>")
    		},
    	}.run(t)
    }
    
    func TestH12_RequestContentLength_Known_NonZero(t *testing.T) {
    	h12requestContentLength(t, func() io.Reader { return strings.NewReader("FOUR") }, 4)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    		"struct { a int8; b int8; c int8; d int8; e int8; f int32 }",
    	},
    	{struct {
    		x struct {
    			a int8 `reflect:"hi there"`
    		}
    	}{},
    		`struct { a int8 "reflect:\"hi there\"" }`,
    	},
    	{struct {
    		x struct {
    			a int8 `reflect:"hi \x00there\t\n\"\\"`
    		}
    	}{},
    		`struct { a int8 "reflect:\"hi \\x00there\\t\\n\\\"\\\\\"" }`,
    	},
    	{struct {
    		x struct {
    			f func(args ...int)
    		}
    	}{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    esult,jT=U.default.Input,zT=U.default.Rule,VT=U.default.Root,UT=U.default.Node});var Ns=v((GT,xc)=>{l();xc.exports=function(i,e,t,r,n){for(e=e.split?e.split("."):e,r=0;r<e.length;r++)i=i?i[e[r]]:n;return i===n?t:i}});var Yi=v((Hi,kc)=>{l();"use strict";Hi.__esModule=!0;Hi.default=Ev;function _v(i){for(var e=i.toLowerCase(),t="",r=!1,n=0;n<6&&e[n]!==void 0;n++){var a=e.charCodeAt(n),s=a>=97&&a<=102||a>=48&&a<=57;if(r=a===32,!s)break;t+=e[n]}if(t.length!==0){var o=parseInt(t,16),u=o>=55296&&o<=57343;return...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  10. src/runtime/asm_ppc64x.s

    	JMP	runtime·memhash64Fallback<ABIInternal>(SB)
    
    TEXT runtime·return0(SB), NOSPLIT, $0
    	MOVW	$0, R3
    	RET
    
    // Called from cgo wrappers, this function returns g->m->curg.stack.hi.
    // Must obey the gcc calling convention.
    #ifdef GOOS_aix
    // On AIX, _cgo_topofstack is defined in runtime/cgo, because it must
    // be a longcall in order to prevent trampolines from ld.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top