Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,013 for repoId (0.14 sec)

  1. platforms/core-runtime/build-operations/src/testFixtures/groovy/org/gradle/internal/operations/TestBuildOperationRunner.java

        private static class TestBuildOperationContext implements BuildOperationContext {
    
            private final Log.Record record;
    
            public TestBuildOperationContext(Log.Record record) {
                this.record = record;
            }
    
            @Override
            public void failed(@Nullable Throwable failure) {
                this.record.failure = failure;
            }
    
            @Override
            public void setResult(@Nullable Object result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/log/slog/logger.go

    // NewLogLogger returns a new [log.Logger] such that each call to its Output method
    // dispatches a Record to the specified handler. The logger acts as a bridge from
    // the older log API to newer structured logging handlers.
    func NewLogLogger(h Handler, level Level) *log.Logger {
    	return log.New(&handlerWriter{h, level, true}, "", 0)
    }
    
    // Log emits a log record with the current time and the given level and message.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. 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)
  4. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

            def report = new JacocoReportXmlFixture(file("application/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml"))
            report.assertHasClassCoverage("application.Adder")
            report.assertHasClassCoverage("direct.Multiplier")
            report.assertHasClassCoverage("transitive.Powerize")
        }
    
        def "aggregated report does not contain external dependencies"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  5. src/runtime/pprof/proto.go

    		// value for this record.
    		tags = tags[1:]
    	}
    
    	// Parse CPU samples from the profile.
    	// Each sample is 3+n uint64s:
    	//	data[0] = 3+n
    	//	data[1] = time stamp (ignored)
    	//	data[2] = count
    	//	data[3:3+n] = stack
    	// If the count is 0 and the stack has length 1,
    	// that's an overflow record inserted by the runtime
    	// to indicate that stack[0] samples were lost.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. tests/transaction_test.go

    		t.Fatalf("Should find saved record")
    	}
    
    	if err := DB.First(&User{}, "name = ?", user1.Name).Error; err == nil {
    		t.Fatalf("Should not find rollbacked record")
    	}
    
    	if err := DB.First(&User{}, "name = ?", user2.Name).Error; err != nil {
    		t.Fatalf("Should find saved record")
    	}
    }
    
    func TestNestedTransactionWithBlock(t *testing.T) {
    	var (
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/testing/fuzz.go

    				f.Error("returned without calling F.Fuzz, F.Fail, or F.Skip")
    			}
    		}
    
    		// Use a deferred call to ensure that we report that the test is
    		// complete even if a cleanup function calls F.FailNow. See issue 41355.
    		didPanic := false
    		defer func() {
    			if !didPanic {
    				// Only report that the test is complete if it doesn't panic,
    				// as otherwise the test binary can exit before the panic is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            index.assertHasNoNavLinks()
        }
    
        def "generates report with aggregated index page for build with no failures - #numThreads parallel thread(s)"() {
            given:
            report = reportWithMaxThreads(numThreads)
            def testTestResults = passingBuildResults()
    
            when:
            report.generateReport(testTestResults, reportDir)
    
            then:
            def index = results(indexFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top