Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 107 for recordLine (0.74 sec)

  1. src/internal/coverage/cformat/format.go

    	// Pointer to current package state.
    	p *pstate
    	// Counter mode.
    	cm coverage.CounterMode
    }
    
    // pstate records package-level coverage data state:
    // - a table of functions (file/fname/literal)
    // - a map recording the index/ID of each func encountered so far
    // - a table storing execution count for the coverable units in each func
    type pstate struct {
    	// slice of unique functions
    	funcs []fnfile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/net/http/httputil/dump.go

    	}
    
    	// Use the actual Transport code to record what we would send
    	// on the wire, but not using TCP.  Use a Transport with a
    	// custom dialer that returns a fake net.Conn that waits
    	// for the full input (and recording it), and then responds
    	// with a dummy response.
    	var buf bytes.Buffer // records the output
    	pr, pw := io.Pipe()
    	defer pr.Close()
    	defer pw.Close()
    	dr := &delegateReader{c: make(chan io.Reader)}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

                                                         &callee_res,
                                                         &callee_needs_recompute)))
                  return failure();
              }
              // If the callee recording is modified, make sure that it will be
              // reprocessed.
              if (callee_needs_recompute) worklist.insert(callee);
            }
            return success();
          };
    
      while (!worklist.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/bitmap.go

    		return false, 0
    	}
    	return true, offset
    }
    
    // Destroy shuts down internal allocator.
    func (r *Range) Destroy() {
    	r.alloc.Destroy()
    }
    
    // EnableMetrics enables metrics recording.
    func (r *Range) EnableMetrics() {
    	registerMetrics()
    	r.metrics = &metricsRecorder{}
    }
    
    // calculateIPOffset calculates the integer offset of ip from base such that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top