Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 116 for recordLine (0.16 sec)

  1. src/cmd/link/internal/ld/stackcheck.go

    	if ldr.AttrExternal(sym) {
    		return 0, nil
    	}
    	if info := ldr.FuncInfo(sym); !info.Valid() { // also external
    		return 0, nil
    	}
    
    	// Track the maximum height of this function and, if we're
    	// recording the graph, its out-edges.
    	var edges []stackCheckEdge
    	maxHeight := 0
    	ctxt := sc.ctxt
    	// addEdge adds a stack growth out of this function to
    	// function "target" or, if target == 0, a local stack growth
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/check_test.go

    	}()
    	buildcfg.Experiment = *exp
    
    	// By default, gotypesalias is not set.
    	if gotypesalias != "" {
    		conf.EnableAlias = gotypesalias != "0"
    	}
    
    	// Provide Config.Info with all maps so that info recording is tested.
    	info := Info{
    		Types:        make(map[syntax.Expr]TypeAndValue),
    		Instances:    make(map[*syntax.Name]Instance),
    		Defs:         make(map[*syntax.Name]Object),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/node_authorizer.go

    	if verb == "create" {
    		return authorizer.DecisionAllow, "", nil
    	}
    
    	// For any other verb, checking the existing object must have established that access
    	// is allowed by recording a graph edge.
    	return r.authorize(nodeName, sliceVertexType, attrs)
    }
    
    // hasPathFrom returns true if there is a directed path from the specified type/namespace/name to the specified Node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/go/types/check_test.go

    	buildcfg.Experiment = *exp
    
    	// By default, gotypesalias is not set.
    	if gotypesalias != "" {
    		t.Setenv("GODEBUG", "gotypesalias="+gotypesalias)
    	}
    
    	// Provide Config.Info with all maps so that info recording is tested.
    	info := Info{
    		Types:        make(map[ast.Expr]TypeAndValue),
    		Instances:    make(map[*ast.Ident]Instance),
    		Defs:         make(map[*ast.Ident]Object),
    		Uses:         make(map[*ast.Ident]Object),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/go/types/typeset.go

    	// set (and don't store it!), so that we still compute the full
    	// type set eventually. Instead, return the top type set and
    	// let any follow-on errors play out.
    	//
    	// TODO(gri) Consider recording when this happens and reporting
    	// it as an error (but only if there were no other errors so to
    	// to not have unnecessary follow-on errors).
    	if !ityp.complete {
    		return &topTypeSet
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typeset.go

    	// set (and don't store it!), so that we still compute the full
    	// type set eventually. Instead, return the top type set and
    	// let any follow-on errors play out.
    	//
    	// TODO(gri) Consider recording when this happens and reporting
    	// it as an error (but only if there were no other errors so to
    	// to not have unnecessary follow-on errors).
    	if !ityp.complete {
    		return &topTypeSet
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status.go

    }
    
    // recordNodeStatusEvent records an event of the given type with the given
    // message for the node.
    func (kl *Kubelet) recordNodeStatusEvent(eventType, event string) {
    	klog.V(2).InfoS("Recording event message for node", "node", klog.KRef("", string(kl.nodeName)), "event", event)
    	kl.recorder.Eventf(kl.nodeRef, eventType, event, "Node %s status is now: %s", kl.nodeName, event)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    		k := 0
    		for ; ; k++ {
    			p := tileParent(tile, k, r.tree.N)
    			if j, ok := tileOrder[p]; ok {
    				if k == 0 {
    					indexTileOrder[i] = j
    				}
    				break
    			}
    		}
    
    		// Walk back down recording child tiles after parents.
    		// This loop ends by revisiting the tile for this index
    		// (tileParent(tile, 0, r.tree.N)) unless k == 0, in which
    		// case the previous loop did it.
    		for k--; k >= 0; k-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pkg/kubelet/images/image_gc_manager.go

    	recorder record.EventRecorder
    
    	// Reference to this node.
    	nodeRef *v1.ObjectReference
    
    	// imageCache is the cache of latest image list.
    	imageCache imageCache
    
    	// tracer for recording spans
    	tracer trace.Tracer
    }
    
    // imageCache caches latest result of ListImages.
    type imageCache struct {
    	// sync.Mutex is the mutex protects the image cache.
    	sync.Mutex
    	// images is the image cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    If the results are not satisfactory, you can think about restructuring your project to reduce dependencies between different tasks.
    
    === Evaluating cache performance over time
    
    Consider recording execution times of your builds, generating graphs, and analyzing the results.
    Keep an eye out for certain patterns, like a build recompiling everything even though you expected compilation to be cached.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top