Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for 1486 (0.16 sec)

  1. README.md

    [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.4724125.svg)](https://doi.org/10.5281/zenodo.4724125)
    [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/1486/badge)](https://bestpractices.coreinfrastructure.org/projects/1486)
    [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/tensorflow/tensorflow/badge)](https://securityscorecards.dev/viewer/?uri=github.com/tensorflow/tensorflow)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * scheme's default is used.
     *
     * ### Path
     *
     * The path identifies a specific resource on the host. Paths have a hierarchical structure like
     * "/square/okhttp/issues/1486" and decompose into a list of segments like `["square", "okhttp",
     * "issues", "1486"]`.
     *
     * This class offers methods to compose and decompose paths by segment. It composes each path
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___GET_SYSTEM_SETTINGS           = 0x5BA // 1466
    	SYS_FTELLO                          = 0x5C8 // 1480
    	SYS_FSEEKO                          = 0x5C9 // 1481
    	SYS_LLDIV                           = 0x5CB // 1483
    	SYS_WCSTOLL                         = 0x5CC // 1484
    	SYS_WCSTOULL                        = 0x5CD // 1485
    	SYS_LLABS                           = 0x5CE // 1486
    	SYS___CONSOLE2                      = 0x5D2 // 1490
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  4. src/runtime/cgo/asm_arm.s

    	CMP     $0, R11
    	BNE     skipfpsave
    	MOVD	F8, (13*4+8*1)(R13)
    	MOVD	F9, (13*4+8*2)(R13)
    	MOVD	F10, (13*4+8*3)(R13)
    	MOVD	F11, (13*4+8*4)(R13)
    	MOVD	F12, (13*4+8*5)(R13)
    	MOVD	F13, (13*4+8*6)(R13)
    	MOVD	F14, (13*4+8*7)(R13)
    	MOVD	F15, (13*4+8*8)(R13)
    
    skipfpsave:
    	BL	runtimeĀ·load_g(SB)
    	// We set up the arguments to cgocallback when saving registers above.
    	BL	runtimeĀ·cgocallback(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. test/abi/return_stuff.go

    //go:registerparams
    //go:noinline
    func F(a, b, c *int) int {
    	return *a + *b + *c
    }
    
    //go:registerparams
    //go:noinline
    func H(s, t string) string {
    	return s + " " + t
    }
    
    func main() {
    	a, b, c := 1, 4, 16
    	x := F(&a, &b, &c)
    	fmt.Printf("x = %d\n", x)
    	y := H("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 700 bytes
    - Viewed (0)
  6. test/abi/named_results.go

    //go:noinline
    func K(s, t string) (result string) { // result spills
    	result = "Aloha! " + s + " " + t
    	r := ""
    	if len(s) <= len(t) {
    		r = "OKAY! "
    		X()
    	}
    	return r + result
    }
    
    func main() {
    	a, b, c := 1, 4, 16
    	x := F(&a, &b, &c)
    	fmt.Printf("x = %d\n", x)
    
    	y := H("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    	z := H("Hello", "Pal!")
    	fmt.Println("len(z) =", len(z))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. test/abi/named_return_stuff.go

    //go:noinline
    func K(s, t string) (result string) { // result spills
    	result = "Aloha! " + s + " " + t
    	r := ""
    	if len(s) <= len(t) {
    		r = "OKAY! "
    		X()
    	}
    	return r + result
    }
    
    func main() {
    	a, b, c := 1, 4, 16
    	x := F(&a, &b, &c)
    	fmt.Printf("x = %d\n", x)
    
    	y := H("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    	z := H("Hello", "Pal!")
    	fmt.Println("len(z) =", len(z))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/internal/syscall/unix/siginfo_linux.go

    	_           [is64bit]int32 // Extra padding for 64-bit hosts only.
    
    	// End of common part. Beginning of signal-specific part.
    
    	Pid    int32
    	Uid    uint32
    	Status int32
    
    	// Pad to 128 bytes.
    	_ [128 - (6+is64bit)*4]byte
    }
    
    const (
    	// Possible values for SiginfoChild.Code field.
    	_CLD_EXITED    int32 = 1
    	_CLD_KILLED          = 2
    	_CLD_DUMPED          = 3
    	_CLD_TRAPPED         = 4
    	_CLD_STOPPED         = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. maven-model/src/test/java/org/apache/maven/model/v4/ModelXmlTest.java

            props.put("javax.version", "3.1.0");
            props.put("mockito.version", "1.10.19");
            props.put("hamcret.version", "2.1");
            props.put("lombok.version", "1.18.6");
            props.put("junit.version", "4.12");
            Model model = Model.newBuilder(true).properties(props).build();
            String xml = toXml(model);
    
            for (int i = 0; i < 10; i++) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/crypto/aes/gcm_arm64.s

    	MOVD	T+16(FP), tPtr
    	MOVD	pLen+24(FP), plen
    	MOVD	dLen+32(FP), dlen
    
    	VLD1	(tPtr), [ACC0.B16]
    	VLD1	(tMsk), [B1.B16]
    
    	LSL	$3, plen
    	LSL	$3, dlen
    
    	VMOV	dlen, B0.D[0]
    	VMOV	plen, B0.D[1]
    
    	ADD	$14*16, pTbl
    	VLD1.P	(pTbl), [T1.B16, T2.B16]
    
    	VEOR	ACC0.B16, B0.B16, B0.B16
    
    	VEXT	$8, B0.B16, B0.B16, T0.B16
    	VEOR	B0.B16, T0.B16, T0.B16
    	VPMULL	B0.D1, T1.D1, ACC1.Q1
    	VPMULL2	B0.D2, T1.D2, ACC0.Q1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top