Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,404 for reachable (0.17 sec)

  1. src/go/doc/example.go

    	// referenced by the body.
    
    	unresolved := make(map[string]bool)
    	var depDecls []ast.Decl
    	usedDecls := make(map[ast.Decl]bool)   // set of top-level decls reachable from the body
    	usedObjs := make(map[*ast.Object]bool) // set of objects reachable from the body (each declared by a usedDecl)
    
    	var inspectFunc func(ast.Node) bool
    	inspectFunc = func(n ast.Node) bool {
    		switch e := n.(type) {
    		case *ast.Ident:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/branches.go

    	// If there are any forward gotos left, no matching label was
    	// found for them. Either those labels were never defined, or
    	// they are inside blocks and not reachable from the gotos.
    	for _, fwd := range fwdGotos {
    		name := fwd.Label.Value
    		if l := ls.labels[name]; l != nil {
    			l.used = true // avoid "defined and not used" error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/sumdb.go

    	// $GOSUMDB can be "key" or "key url",
    	// and the key can be a full verifier key
    	// or a host on our list of known keys.
    
    	// Special case: sum.golang.google.cn
    	// is an alias, reachable inside mainland China,
    	// for sum.golang.org. If there are more
    	// of these we should add a map like knownGOSUMDB.
    	gosumdb := cfg.GOSUMDB
    	if gosumdb == "sum.golang.google.cn" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/mono.go

    	}
    }
    
    func (check *Checker) reportInstanceLoop(v int) {
    	var stack []int
    	seen := make([]bool, len(check.mono.vertices))
    
    	// We have a path that contains a cycle and ends at v, but v may
    	// only be reachable from the cycle, not on the cycle itself. We
    	// start by walking backwards along the path until we find a vertex
    	// that appears twice.
    	for !seen[v] {
    		stack = append(stack, v)
    		seen[v] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMaker.java

       * Specifies that each value (not key) stored in the map should be wrapped in a {@link
       * WeakReference} (by default, strong references are used).
       *
       * <p>Weak values will be garbage collected once they are weakly reachable. This makes them a poor
       * candidate for caching.
       *
       * <p><b>Warning:</b> when this method is used, the resulting map will use identity ({@code ==})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. test/escape_struct_param1.go

    	return *(*v._upp)._spp
    }
    
    // This test isolates the one value that needs to escape, not because
    // it distinguishes fields but because it knows that &s6 is the only
    // value reachable by two indirects from v.
    // The test depends on the level cap in the escape analysis tags
    // being able to encode that fact.
    func tUPPiSPPia() {
    	s1 := "ant"
    	s2 := "bat"
    	s3 := "cat"
    	s4 := "dog"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  7. test/escape_struct_param2.go

    	return *(*v._upp)._spp
    }
    
    // This test isolates the one value that needs to escape, not because
    // it distinguishes fields but because it knows that &s6 is the only
    // value reachable by two indirects from v.
    // The test depends on the level cap in the escape analysis tags
    // being able to encode that fact.
    func tUPPiSPPia() { // This test is sensitive to the level cap in function summary results.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  8. SECURITY.md

    If you need to run untrusted models, execute them inside a
    [**sandbox**](https://developers.google.com/code-sandboxing). Memory corruptions
    in TensorFlow ops can be recognized as security issues only if they are
    reachable and exploitable through production-grade, benign models.
    
    ### Compilation
    
    Compiling models via the recommended entry points described in
    [XLA](https://www.tensorflow.org/xla) and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    	// Initialize matches to contain the variable types we are searching for.
    	matches := make(map[types.Type][]string)
    	for _, typ := range typs {
    		if typ == nil {
    			continue // TODO(adonovan): is this reachable?
    		}
    		matches[typ] = nil // create entry
    	}
    
    	seen := map[types.Object]struct{}{}
    	ast.Inspect(node, func(n ast.Node) bool {
    		if n == nil {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/subr.go

    	// mark top-level method symbols
    	// so that expand1 doesn't consider them.
    	for _, f := range t.Methods() {
    		f.Sym.SetUniq(true)
    	}
    
    	// generate all reachable methods
    	slist = slist[:0]
    	expand1(t, true)
    
    	// check each method to be uniquely reachable
    	var ms []*types.Field
    	for i, sl := range slist {
    		slist[i].field = nil
    		sl.field.Sym.SetUniq(false)
    
    		var f *types.Field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
Back to top