Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 96 for ensp (0.08 sec)

  1. src/syscall/zsyscall_openbsd_386.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func execve(path *byte, argv **byte, envp **byte) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_execve_trampoline), uintptr(unsafe.Pointer(path)), uintptr(unsafe.Pointer(argv)), uintptr(unsafe.Pointer(envp)))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_execve_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_darwin_arm64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func execve(path *byte, argv **byte, envp **byte) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_execve_trampoline), uintptr(unsafe.Pointer(path)), uintptr(unsafe.Pointer(argv)), uintptr(unsafe.Pointer(envp)))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_execve_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_darwin_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func execve(path *byte, argv **byte, envp **byte) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_execve_trampoline), uintptr(unsafe.Pointer(path)), uintptr(unsafe.Pointer(argv)), uintptr(unsafe.Pointer(envp)))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_execve_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  4. src/runtime/os_linux.go

    var addrspace_vec [1]byte
    
    func mincore(addr unsafe.Pointer, n uintptr, dst *byte) int32
    
    var auxvreadbuf [128]uintptr
    
    func sysargs(argc int32, argv **byte) {
    	n := argc + 1
    
    	// skip over argv, envp to get to auxv
    	for argv_index(argv, n) != nil {
    		n++
    	}
    
    	// skip NULL separator
    	n++
    
    	// now argv+n is auxv
    	auxvp := (*[1 << 28]uintptr)(add(unsafe.Pointer(argv), uintptr(n)*goarch.PtrSize))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. cmd/data-usage-cache.go

    )
    
    //go:generate msgp -file $GOFILE -unexported
    
    // dataUsageHash is the hash type used.
    type dataUsageHash string
    
    // sizeHistogramV1 is size histogram V1, which has fewer intervals esp. between
    // 1024B and 1MiB.
    type sizeHistogramV1 [dataUsageBucketLenV1]uint64
    
    // sizeHistogram is a size histogram.
    type sizeHistogram [dataUsageBucketLen]uint64
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  6. cmd/testdata/xl-meta-merge.zip

    XïR ´nV_ô Üñ ÚûïÙ —ûò›‘ µŒ Õ êñÖ ÕßÐÐñÖÜïì ôãòéßãéïÕ2^^%% ‰’¿1”ûòßÈ^^¿Õï Üøï êñôôña¯Jé:ÿëííùèö:Æë:Ìßò ã ÕÜãòìãôñòï —ûò›‘ ÕïÖÚïÖ ñò ”ûòßÈ øñÕÜÕ Ößòòûòé 7æûÜ ›òÜïô1ƒ—Œ ãÖåøûÜïåÜßnïÏ(:¬õÊîùÿõ:úú1ìãÜãàà ÙûÜø Üøï ÐãÜø Üñ Üøï ìÖûÚï ñÖ ìûÖïåÜñÖË ûò Ùøûåø Ëñß ÙãòÜ —ûò›‘ Üñ ÕÜñÖWtTãÞ úÜøpd~W\Ö#ù tˆXzèÎË€£™|^ ë}l¨åk£I}HÄuD­eeì i¯RñnmE}e•êslYn)EqH –­QklSW@EjqÓð€¡F Sy\ÁYú˜»åûJûóÖ mpJkH¢•d ÌsöH@Fj@¢v}ˆz[pèwGaìs²@qxêu²hiKÂQ¸K[ÎJspteH>kHc^åziAVUJIE¬ˆ ñpfeÁó€@vÑ„bwÓGxJª­ ,t ýÚøÈV^G IpwduÜ5w@ ïærc\¼cñ_L¦ ¯¦_R¦xñ...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/test.go

    func testSetEnv(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		// Go uses SetEnvironmentVariable on windows. However,
    		// C runtime takes a *copy* at process startup of the
    		// OS environment, and stores it in environ/envp.
    		// It is this copy that	getenv/putenv manipulate.
    		t.Logf("skipping test")
    		return
    	}
    	const key = "CGO_OS_TEST_KEY"
    	const val = "CGO_OS_TEST_VALUE"
    	os.Setenv(key, val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    engineer engineer.aero engineering england.museum eniwa.hokkaido.jp enna.it ens.tn enscaled.sg ent.platform.sh enterprisecloud.nu enterprises entertainment.aero entomology.museum environment.museum environmentalconserv.museum epilepsy.museum epson equipment equipment.aero er.in ericsson erimo.hokkaido.jp erni erotica.hu erotika.hu es es-1.axarnet.cloud es.ax es.eu.org es.gov.br es.kr es.leg.br esan.hokkaido.jp esashi.hokkaido.jp esp.br esq essex.museum est-a-la-maison.com est-a-la-masion.com est-le-patron.com...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/_aws/fess.json

    "cada", "cadascú", "cadascuna", "cadascunes", "cadascuns", "com", "contra", "d'un", "d'una", "d'unes", "d'uns", "dalt", "de", "del", "dels", "des", "després", "dins", "dintre", "donat", "doncs", "durant", "e", "eh", "el", "els", "em", "en", "encara", "ens", "entre", "érem", "eren", "éreu", "es", "és", "esta", "està", "estàvem", "estaven", "estàveu", "esteu", "et", "etc", "ets", "fins", "fora", "gairebé", "ha", "han", "has", "havia", "he", "hem", "heu", "hi ", "ho", "i", "igual", "iguals", "ja", "l'hi",...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/_cloud/fess.json

    "cada", "cadascú", "cadascuna", "cadascunes", "cadascuns", "com", "contra", "d'un", "d'una", "d'unes", "d'uns", "dalt", "de", "del", "dels", "des", "després", "dins", "dintre", "donat", "doncs", "durant", "e", "eh", "el", "els", "em", "en", "encara", "ens", "entre", "érem", "eren", "éreu", "es", "és", "esta", "està", "estàvem", "estaven", "estàveu", "esteu", "et", "etc", "ets", "fins", "fora", "gairebé", "ha", "han", "has", "havia", "he", "hem", "heu", "hi ", "ho", "i", "igual", "iguals", "ja", "l'hi",...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
Back to top