Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for livable (0.25 sec)

  1. src/syscall/syscall_windows.go

    	var buf [MAX_PATH + 1]uint16
    	path, err := fdpath(fd, buf[:])
    	if err != nil {
    		return err
    	}
    	// When using VOLUME_NAME_DOS, the path is always prefixed by "\\?\".
    	// That prefix tells the Windows APIs to disable all string parsing and to send
    	// the string that follows it straight to the file system.
    	// Although SetCurrentDirectory and GetCurrentDirectory do support the "\\?\" prefix,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/asm0.go

    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package mips
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    		c = append(c,
    			"-ferror-limit=0",
    			// Apple clang version 1.7 (tags/Apple/clang-77) (based on LLVM 2.9svn)
    			// doesn't have -Wno-unneeded-internal-declaration, so we need yet another
    			// flag to disable the warning. Yes, really good diagnostics, clang.
    			"-Wno-unknown-warning-option",
    			"-Wno-unneeded-internal-declaration",
    			"-Wno-unused-function",
    			"-Qunused-arguments",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    		scavenge.memoryLimitGoal.Store(^uint64(0))
    	} else {
    		scavenge.memoryLimitGoal.Store(memoryLimitGoal)
    	}
    
    	// Now handle the gcPercent goal.
    
    	// If we're called before the first GC completed, disable scavenging.
    	// We never scavenge before the 2nd GC cycle anyway (we don't have enough
    	// information about the heap yet) so this is fine, and avoids a fault
    	// or garbage data later.
    	if lastHeapGoal == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	OpenThread(desiredAccess uint32, inheritHandle bool, threadId uint32) (handle Handle, err error)
    //sys	SetProcessPriorityBoost(process Handle, disable bool) (err error) = kernel32.SetProcessPriorityBoost
    //sys	GetProcessWorkingSetSizeEx(hProcess Handle, lpMinimumWorkingSetSize *uintptr, lpMaximumWorkingSetSize *uintptr, flags *uint32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/asm5.go

    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package arm
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    func toolenv() []string {
    	var env []string
    	if !mustLinkExternal(goos, goarch, false) {
    		// Unless the platform requires external linking,
    		// we disable cgo to get static binaries for cmd/go and cmd/pprof,
    		// so that they work on systems without the same dynamic libraries
    		// as the original build system.
    		env = append(env, "CGO_ENABLED=0")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

     * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    		return &ast.IndexExpr{
    			X:      x,
    			Lbrack: lbrack,
    			Index:  &ast.BadExpr{From: rbrack, To: rbrack},
    			Rbrack: rbrack,
    		}
    	}
    	p.exprLev++
    
    	const N = 3 // change the 3 to 2 to disable 3-index slices
    	var args []ast.Expr
    	var index [N]ast.Expr
    	var colons [N - 1]token.Pos
    	if p.tok != token.COLON {
    		// We can't know if we have an index expression or a type instantiation;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    	// hardware, server hardware, and security.
    	//
    	// Deprecated: PreferServerCipherSuites is ignored.
    	PreferServerCipherSuites bool
    
    	// SessionTicketsDisabled may be set to true to disable session ticket and
    	// PSK (resumption) support. Note that on clients, session ticket support is
    	// also disabled if ClientSessionCache is nil.
    	SessionTicketsDisabled bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top