Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 749 for reachable (0.13 sec)

  1. 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)
  2. 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)
  3. src/cmd/link/internal/ld/go.go

    		return
    	}
    
    	// Add dynamic symbols.
    	for _, s := range ctxt.dynexp {
    		// Consistency check.
    		if !ctxt.loader.AttrReachable(s) {
    			panic("dynexp entry not reachable")
    		}
    
    		Adddynsym(ctxt.loader, &ctxt.Target, &ctxt.ArchSyms, s)
    	}
    
    	for _, lib := range dedupLibraries(ctxt, dynlib) {
    		adddynlib(ctxt, lib)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    	// if err := clusterinfo.CreateBootstrapConfigMapIfNotExists(client, kubeadmconstants.GetAdminKubeConfigPath()); err != nil {
    	// 	return err
    	//}
    	// Create/update RBAC rules that makes the cluster-info ConfigMap reachable
    	if err := clusterinfo.CreateClusterInfoRBACRules(client); err != nil {
    		errs = append(errs, err)
    	}
    
    	if err := PerformAddonsUpgrade(client, cfg, patchesDir, out); err != nil {
    		errs = append(errs, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. 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)
  8. pkg/test/framework/components/echo/echotest/run.go

    			t.setupPair(ctx, from.Callers(), toServices)
    			t.fromEachWorkloadCluster(ctx, from, func(ctx framework.TestContext, fromInstance echo.Instance) {
    				// reapply destination filters to only get the reachable instances for this cluster
    				// this can be done safely since toNDeployments asserts the Services won't change
    				destDeployments := t.applyCombinationFilters(fromInstance, toServices.Instances()).Services()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    }
    
    // typeFields returns a list of fields that JSON should recognize for the given type.
    // The algorithm is breadth-first search over the set of structs to include - the top struct
    // and then any reachable anonymous structs.
    func typeFields(t reflect.Type) []field {
    	// Anonymous fields to explore at the current level and the next.
    	current := []field{}
    	next := []field{{typ: t}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/sccp.go

    //     / | \
    // .. 1  2  3 ..   constant
    //     \ | /
    //     Bottom      not constant
    //
    // It starts with optimistically assuming that all SSA values are initially Top
    // and then propagates constant facts only along reachable control flow paths.
    // Since some basic blocks are not visited yet, corresponding inputs of phi become
    // Top, we use the meet(phi) to compute its lattice.
    //
    // 	  Top ∩ any = any
    // 	  Bottom ∩ any = Bottom
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top