Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 154 for write1 (0.1 sec)

  1. src/regexp/testdata/testregex.c

    H("<TITLE>testregex man document</TITLE>\n");
    H("</HEAD>\n");
    H("<BODY bgcolor=white>\n");
    H("<PRE>\n");
    T("NAME\n");
    T("  testregex - regex(3) test harness\n");
    T("\n");
    T("SYNOPSIS\n");
    T("  testregex [ options ]\n");
    T("\n");
    T("DESCRIPTION\n");
    T("  testregex reads regex(3) test specifications, one per line, from the\n");
    T("  standard input and writes one output line for each failed test. A\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    // this way:
    //
    //	1. Stack frame allocation can avoid zeroing altogether.
    //
    //	2. It exhibits better temporal locality, since the program is
    //	   probably about to write to the memory.
    //
    //	3. We don't zero pages that never get reused.
    
    // Virtual memory layout
    //
    // The heap consists of a set of arenas, which are 64MB on 64-bit and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    ----
    > gradle processTemplatesAdHoc
    include::{snippetsPath}/tasks/incrementalBuild-customTaskClass/tests/incrementalAdHocTask.out[]
    ----
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    	}
    	return
    }
    
    var libc_unmount_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_unmount unmount "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func write(fd int, p []byte) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(p) > 0 {
    		_p0 = unsafe.Pointer(&p[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go

    	}
    	return
    }
    
    var libc_unmount_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_unmount unmount "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func write(fd int, p []byte) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(p) > 0 {
    		_p0 = unsafe.Pointer(&p[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    	value atomic.Uint64
    }
    
    // load loads and unpacks a scavChunkData.
    func (sc *atomicScavChunkData) load() scavChunkData {
    	return unpackScavChunkData(sc.value.Load())
    }
    
    // store packs and writes a new scavChunkData. store must be serialized
    // with other calls to store.
    func (sc *atomicScavChunkData) store(ssc scavChunkData) {
    	sc.value.Store(ssc.pack())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbSessionImpl.java

     * Lesser General Public License for more details.
     * 
     * You should have received a copy of the GNU Lesser General Public
     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb;
    
    
    import java.io.IOException;
    import java.security.GeneralSecurityException;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  8. cmd/sts-handlers_test.go

    	}
    
    	gotBuckets := set.NewStringSet()
    	for _, b := range accInfo.Buckets {
    		gotBuckets.Add(b.Name)
    		if !(b.Access.Read && b.Access.Write) {
    			c.Fatalf("root user should have read and write access to bucket: %v", b.Name)
    		}
    	}
    	shouldHaveBuckets := set.CreateStringSet(bucket2, bucket)
    	if !gotBuckets.Equals(shouldHaveBuckets) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	}
    	if ctxt.NeedCodeSign() {
    		err := machoCodeSign(ctxt, *flagOutfile)
    		if err != nil {
    			Exitf("%s: code signing failed: %v", os.Args[0], err)
    		}
    	}
    }
    
    // passLongArgsInResponseFile writes the arguments into a file if they
    // are very long.
    func (ctxt *Link) passLongArgsInResponseFile(argv []string, altLinker string) []string {
    	c := 0
    	for _, arg := range argv {
    		c += len(arg)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{43, "ENOCSI", "no CSI structure available"},
    	{44, "EL2HLT", "level 2 halted"},
    	{45, "EDEADLK", "deadlock condition if locked"},
    	{46, "ENOTREADY", "device not ready"},
    	{47, "EWRPROTECT", "write-protected media"},
    	{48, "EFORMAT", "unformatted or incompatible media"},
    	{49, "ENOLCK", "no locks available"},
    	{50, "ENOCONNECT", "cannot Establish Connection"},
    	{52, "ESTALE", "missing file or filesystem"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
Back to top