Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 281 for repoId (0.14 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		return total / div
    	}
    	return total
    }
    
    // Report contains the data and associated routines to extract a
    // report from a profile.
    type Report struct {
    	prof        *profile.Profile
    	total       int64
    	options     *Options
    	formatValue func(int64) string
    }
    
    // Total returns the total number of samples in a report.
    func (rpt *Report) Total() int64 { return rpt.total }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolverTest.groovy

        }
    
        def "stops on first available local dependency for static version"() {
            given:
            def repo1 = addRepo1()
            def repo2 = Mock(ModuleComponentRepository)
            resolver.add(repo2)
            def repo3 = Mock(ModuleComponentRepository)
            resolver.add(repo3)
    
            when:
            resolver.resolve(moduleComponentId, componentRequestMetaData, result)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    			return err
    		}
    	}
    
    	if pushRequest.Full {
    		// Report all events for unwatched resources. Watched resources will be reported in pushXds or on ack.
    		reportEventsForUnWatched(con, s.StatusReporter, pushRequest.Push.LedgerVersion)
    	}
    
    	proxiesConvergeDelay.Record(time.Since(pushRequest.Start).Seconds())
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/call.go

    				targsList = [][]Type{targs}
    				xlistList = [][]syntax.Expr{xlist}
    				// Update x.expr so that we can record the partially instantiated function.
    				x.expr = inst
    			} else {
    				// x was instantiated: we must record it here because we didn't
    				// use the usual expression evaluators.
    				check.record(&x)
    			}
    			resList = []*operand{&x}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. src/go/types/call.go

    				targsList = [][]Type{targs}
    				xlistList = [][]ast.Expr{xlist}
    				// Update x.expr so that we can record the partially instantiated function.
    				x.expr = ix.Orig
    			} else {
    				// x was instantiated: we must record it here because we didn't
    				// use the usual expression evaluators.
    				check.record(&x)
    			}
    			resList = []*operand{&x}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. src/go/types/builtins.go

    		}
    
    		// TODO(gri) Should we pass x.typ instead of base (and have indirect report if derefStructPtr indirected)?
    		check.recordSelection(selx, FieldVal, base, obj, index, false)
    
    		// record the selector expression (was bug - go.dev/issue/47895)
    		{
    			mode := value
    			if x.mode == variable || indirect {
    				mode = variable
    			}
    			check.record(&operand{mode, selx, obj.Type(), nil, 0})
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/builtins.go

    		}
    
    		// TODO(gri) Should we pass x.typ instead of base (and have indirect report if derefStructPtr indirected)?
    		check.recordSelection(selx, FieldVal, base, obj, index, false)
    
    		// record the selector expression (was bug - go.dev/issue/47895)
    		{
    			mode := value
    			if x.mode == variable || indirect {
    				mode = variable
    			}
    			check.record(&operand{mode, selx, obj.Type(), nil, 0})
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package report
    
    // This file contains routines related to the generation of annotated
    // source listings.
    
    import (
    	"bufio"
    	"fmt"
    	"html/template"
    	"io"
    	"os"
    	"path/filepath"
    	"regexp"
    	"sort"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	}
    
    	var uploadContents []byte
    	if uploadOK {
    		// 2. create the uploadable version
    		cfg := config.NewConfig(u.config)
    		upload := &telemetry.Report{
    			Week:     report.Week,
    			LastWeek: report.LastWeek,
    			X:        report.X,
    			Config:   report.Config,
    		}
    		for _, p := range report.Programs {
    			// does the uploadConfig want this program?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	if err != nil {
    		return err
    	}
    
    	// Generate the report.
    	dst := new(bytes.Buffer)
    	switch rpt.OutputFormat() {
    	case report.WebList:
    		// We need template expansion, so generate here instead of in report.
    		err = printWebList(dst, rpt, o.Obj)
    	default:
    		err = report.Generate(dst, rpt, o.Obj)
    	}
    	if err != nil {
    		return err
    	}
    	src := dst
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top