Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 102 of 102 for livable (0.17 sec)

  1. src/internal/fuzz/fuzz.go

    						}
    						break
    					}
    					// Found a crasher but haven't yet attempted to minimize it.
    					// Send it back to a worker for minimization. Disable inputC so
    					// other workers don't continue fuzzing.
    					c.crashMinimizing = &result
    					fmt.Fprintf(c.opts.Log, "fuzz: minimizing %d-byte failing input file\n", len(result.entry.Data))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    	}
    	if len(oob) > 0 && empty {
    		n = 0
    	}
    	return n, nil
    }
    
    //sys	acct(path *byte) (err error)
    
    func Acct(path string) (err error) {
    	if len(path) == 0 {
    		// Assume caller wants to disable accounting.
    		return acct(nil)
    	}
    
    	pathp, err := BytePtrFromString(path)
    	if err != nil {
    		return err
    	}
    	return acct(pathp)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
Back to top