Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for webTest (0.18 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

                package org.gradle.groups;
                import org.testng.annotations.Test;
    
                public class SomeTest {
                    @Test(groups = "web")
                    public void webTest() {}
    
                    @Test(groups = "database")
                    public void databaseTest() {}
    
                    @Test(groups = {"database", "slow"})
                    public void slowDatabaseTest() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	// Visualize HTML directly generated by report.
    	"weblist": {report.WebList, nil, invokeVisualizer("html", browsers()), true, "Display annotated source in a web browser", listHelp("weblist", false)},
    }
    
    // configHelp contains help text per configuration parameter.
    var configHelp = map[string]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	c, rpt, err := generateRawReport(p, cmd, cfg, o)
    	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
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    = Declaring Rich Versions
    
    Gradle supports a rich model for declaring versions, which allows to combine different level of version information.
    The terms and their meaning are explained below, from the strongest to the weakest:
    
    [[sec:strict-version]]
    `strictly`::
    Any version not matched by this version notation will be excluded.
    This is the strongest version declaration.
    On a declared dependency, a `strictly` can downgrade a version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. docs/hu/docs/index.md

    **Typer** a FastAPI kistestvére. A **CLI-k FastAPI-ja**. ⌨️ 🚀
    
    ## Követelmények
    
    A FastAPI óriások vállán áll:
    
    * <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> a webes részekhez.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	"github.com/google/pprof/profile"
    )
    
    // Output formats.
    const (
    	Callgrind = iota
    	Comments
    	Dis
    	Dot
    	List
    	Proto
    	Raw
    	Tags
    	Text
    	TopProto
    	Traces
    	Tree
    	WebList
    )
    
    // Options are the formatting and filtering options used to generate a
    // profile.
    type Options struct {
    	OutputFormat int
    
    	CumSort       bool
    	CallTree      bool
    	DropNegative  bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. src/regexp/syntax/regexp.go

    }
    
    //go:generate stringer -type Op -trimprefix Op
    
    // An Op is a single regular expression operator.
    type Op uint8
    
    // Operators are listed in precedence order, tightest binding to weakest.
    // Character class operators are listed simplest to most complex
    // (OpLiteral, OpCharClass, OpAnyCharNotNL, OpAnyChar).
    
    const (
    	OpNoMatch        Op = 1 + iota // matches no strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	})
    
    }
    
    // source generates a web page containing source code annotated with profile
    // data.
    func (ui *webInterface) source(w http.ResponseWriter, req *http.Request) {
    	args := []string{"weblist", req.URL.Query().Get("f")}
    	rpt, errList := ui.makeReport(w, req, args, nil)
    	if rpt == nil {
    		return // error already reported
    	}
    
    	// Generate source listing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. src/runtime/gc_test.go

    		t.Logf("bad last GC pause: got %v, want [0, 10e9]", pause)
    	}
    }
    
    var hugeSink any
    
    func TestHugeGCInfo(t *testing.T) {
    	// The test ensures that compiler can chew these huge types even on weakest machines.
    	// The types are not allocated at runtime.
    	if hugeSink != nil {
    		// 400MB on 32 bots, 4TB on 64-bits.
    		const n = (400 << 20) + (unsafe.Sizeof(uintptr(0))-4)<<40
    		hugeSink = new([n]*byte)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/language/match.go

    // rules.
    //
    // The confidence level of matching a pair of tags is determined by finding the
    // lowest confidence level of any matches of the corresponding subtags (the
    // result is deemed as good as its weakest link).
    // We define the following levels:
    //   Exact    - An exact match of a subtag, before adding likely subtags.
    //   MaxExact - An exact match of a subtag, after adding likely subtags.
    //              [See Note 2].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
Back to top