Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 594 for reserve (0.5 sec)

  1. src/cmd/go/script_test.go

    		}
    	}
    
    	return env, nil
    }
    
    var extraEnvKeys = []string{
    	"SYSTEMROOT",         // must be preserved on Windows to find DLLs; golang.org/issue/25210
    	"WINDIR",             // must be preserved on Windows to be able to run PowerShell command; golang.org/issue/30711
    	"LD_LIBRARY_PATH",    // must be preserved on Unix systems to find shared libraries
    	"LIBRARY_PATH",       // allow override of non-standard static library paths
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/obj7.go

    	p.From.Class = 0
    	p.To.Class = 0
    
    	// Previously we rewrote $0 to ZR, but we have now removed this change.
    	// In order to be compatible with some previous legal instruction formats,
    	// reserve the previous conversion for some specific instructions.
    	if p.From.Type == obj.TYPE_CONST && p.From.Offset == 0 && zrReplace[p.As] {
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = REGZERO
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	POPCNTW R3, R4                  // 7c6402f4
    	POPCNTD R3, R4                  // 7c6403f4
    
    	PASTECC R3, R4                  // 7c23270d
    	COPY R3, R4                     // 7c23260c
    
    	// load-and-reserve
    	LBAR (R4)(R3*1),$1,R5           // 7ca32069
    	LBAR (R4)(R0),$1,R5             // 7ca02069
    	LBAR (R4),$0,R5                 // 7ca02068
    	LBAR (R3),R5                    // 7ca01868
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/dcl.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package typecheck
    
    import (
    	"fmt"
    	"sync"
    
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    )
    
    var funcStack []*ir.Func // stack of previous values of ir.CurFunc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:15:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. doc/go_mem.html

    <p>
    A read <i>r</i> of a memory location <i>x</i>
    holding a value
    that is not larger than a machine word must observe
    some write <i>w</i> such that <i>r</i> does not happen before <i>w</i>
    and there is no write <i>w'</i> such that <i>w</i> happens before <i>w'</i>
    and <i>w'</i> happens before <i>r</i>.
    That is, each read must observe a value written by a preceding or concurrent write.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/seh_internal_windows_test.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build cgo && windows && internal
    
    package cgotest
    
    import (
    	"internal/testenv"
    	"testing"
    )
    
    func TestCallbackCallersSEH(t *testing.T) {
    	testenv.SkipFlaky(t, 65116)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 06:52:00 UTC 2024
    - 334 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/testdata/manual.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file is tested when running "go test -run Manual"
    // without source arguments. Use for one-off debugging.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 17:42:47 UTC 2024
    - 285 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/testdata/issue52391.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    type _ interface {
    	int
    	(int)
    	(*int)
    	*([]byte)
    	~(int)
    	(int) | (string)
    	(int) | ~(string)
    	(/* ERROR unexpected ~ */ ~int)
    	(int /* ERROR unexpected \| */ | /* ERROR unexpected name string */ string /* ERROR unexpected \) */ )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 405 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/testdata/issue20789.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure this doesn't crash the compiler.
    // Line 9 must end in EOF for this test (no newline).
    
    package e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 326 bytes
    - Viewed (0)
  10. src/all.bash

    #!/usr/bin/env bash
    # Copyright 2009 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    set -e
    if [ ! -f make.bash ]; then
    	echo 'all.bash must be run from $GOROOT/src' 1>&2
    	exit 1
    fi
    . ./make.bash "$@" --no-banner
    bash run.bash --no-rebuild
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:53:58 UTC 2024
    - 377 bytes
    - Viewed (0)
Back to top