Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for HI (0.03 sec)

  1. src/cmd/compile/internal/ssa/func.go

    	if name.Type.IsSigned() {
    		t = types.Types[types.TINT32]
    	} else {
    		t = types.Types[types.TUINT32]
    	}
    	if f.Config.BigEndian {
    		return f.SplitSlot(name, ".hi", 0, t), f.SplitSlot(name, ".lo", t.Size(), types.Types[types.TUINT32])
    	}
    	return f.SplitSlot(name, ".hi", t.Size(), t), f.SplitSlot(name, ".lo", 0, types.Types[types.TUINT32])
    }
    
    func (f *Func) SplitStruct(name *LocalSlot, i int) *LocalSlot {
    	st := name.Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            type                             | reference                                                   | invocation
            Logger.name                      | "logger"                                                    | "info('hi')"
            ObjectFactory.name               | "objects"                                                   | "newInstance(SomeBean)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    include::sample[dir="snippets/customPlugins/customPlugin/groovy",files="build.gradle[tag=script-plugin]"]
    ====
    
    ----
    $ gradle -q hi
    include::{snippetsPath}/customPlugins/customPlugin/tests/customPluginScript.out[]
    ----
    
    **Script plugins should be avoided.**
    
    [[sec:precompile_script_plugin]]
    == Precompiled script plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	size := int(arch.sizes.Sizeof(t))
    	kind := asmKindForType(t, size)
    	cc = append(cc, newComponent(suffix, kind, s, off, size, suffix))
    
    	switch kind {
    	case 8:
    		if arch.ptrSize == 4 {
    			w1, w2 := "lo", "hi"
    			if arch.bigEndian {
    				w1, w2 = w2, w1
    			}
    			cc = append(cc, newComponent(suffix+"_"+w1, 4, "half "+s, off, 4, suffix))
    			cc = append(cc, newComponent(suffix+"_"+w2, 4, "half "+s, off+4, 4, suffix))
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. 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)
  6. src/runtime/asm_loong64.s

    	JMP	runtime·memhash64Fallback<ABIInternal>(SB)
    
    TEXT runtime·return0(SB), NOSPLIT, $0
    	MOVW	$0, R19
    	RET
    
    // Called from cgo wrappers, this function returns g->m->curg.stack.hi.
    // Must obey the gcc calling convention.
    TEXT _cgo_topofstack(SB),NOSPLIT,$16
    	// g (R22) and REGTMP (R30)  might be clobbered by load_g. They
    	// are callee-save in the gcc calling convention, so save them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/runtime/asm_arm64.s

    	MOVD	(R6), R6
    	CBNZ	R6, droppedm
    
    dropm:
    	MOVD	$runtime·dropm(SB), R0
    	BL	(R0)
    droppedm:
    
    	// Done!
    	RET
    
    // Called from cgo wrappers, this function returns g->m->curg.stack.hi.
    // Must obey the gcc calling convention.
    TEXT _cgo_topofstack(SB),NOSPLIT,$24
    	// g (R28) and REGTMP (R27)  might be clobbered by load_g. They
    	// are callee-save in the gcc calling convention, so save them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top