Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 235 for observed (0.96 sec)

  1. doc/go_mem.html

    </pre>
    
    <p>
    the assignment to <code>a</code> is not followed by
    any synchronization event, so it is not guaranteed to be
    observed by any other goroutine.
    In fact, an aggressive compiler might delete the entire <code>go</code> statement.
    </p>
    
    <p>
    If the effects of a goroutine must be observed by another goroutine,
    use a synchronization mechanism such as a lock or channel
    communication to establish a relative ordering.
    </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)
  2. src/cmd/go/internal/modload/import.go

    // importFromModules attempts to locate the module using only the main module
    // and the roots of rs before it loads the full graph.
    //
    // The answer must be unique: importFromModules returns an error if multiple
    // modules are observed to provide the same package.
    //
    // importFromModules can return a module with an empty m.Path, for packages in
    // the standard library.
    //
    // importFromModules can return an empty directory string, for fake packages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/decl.go

    			//           the alias as incomplete. Currently this causes problems
    			//           with certain cycles. Investigate.
    			//
    			// NOTE(adonovan): to avoid the Invalid being prematurely observed
    			// by (e.g.) a var whose type is an unfinished cycle,
    			// Unalias does not memoize if Invalid. Perhaps we should use a
    			// special sentinel distinct from Invalid.
    			alias := check.newAlias(obj, Typ[Invalid])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/rangefunc/rewrite.go

    			stack = stack[:len(stack)-1]
    			if n == forStack[len(forStack)-1] {
    				forStack = forStack[:len(forStack)-1]
    			}
    		}
    		return true
    	})
    
    	// Assign numbers to all the labels we observed.
    	used := -1 // returns use -1
    	for _, l := range labels {
    		used -= 3
    		r.branchNext[branch{syntax.Break, l}] = used
    		r.branchNext[branch{syntax.Continue, l}] = used + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/codehost/git.go

    	// Git reports "is an ancestor" with exit code 0 and "not an ancestor" with
    	// exit code 1.
    	// Unfortunately, if we've already fetched rev with a shallow history, git
    	// merge-base has been observed to report a false-negative, so don't stop yet
    	// even if the exit code is 1!
    	if err == nil {
    		return true, nil
    	}
    
    	// See whether the tag and rev even exist.
    	tags, err := r.Tags(ctx, tag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/vcs.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.
    
    package codehost
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"internal/lazyregexp"
    	"io"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/lockedfile"
    	"cmd/go/internal/par"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. doc/asm.html

    </li>
    
    </ul>
    
    <h3 id="arm64">ARM64</h3>
    
    <p>
    <code>R18</code> is the "platform register", reserved on the Apple platform.
    To prevent accidental misuse, the register is named <code>R18_PLATFORM</code>.
    <code>R27</code> and <code>R28</code> are reserved by the compiler and linker.
    <code>R29</code> is the frame pointer.
    <code>R30</code> is the link register.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  8. src/archive/tar/format.go

    // Copyright 2016 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 tar
    
    import "strings"
    
    // Format represents the tar archive format.
    //
    // The original tar format was introduced in Unix V7.
    // Since then, there have been multiple competing formats attempting to
    // standardize or extend the V7 format to overcome its limitations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/pgo_inl_test.go

    // Copyright 2017 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 test
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"internal/profile"
    	"internal/testenv"
    	"io"
    	"os"
    	"path/filepath"
    	"regexp"
    	"strings"
    	"testing"
    )
    
    const profFile = "inline_hot.pprof"
    const preProfFile = "inline_hot.pprof.node_map"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/clean/clean.go

    // Copyright 2012 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 clean implements the “go clean” command.
    package clean
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strconv"
    	"strings"
    	"time"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cache"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/load"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top