Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,281 for noImpl (0.27 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginRegistryTest.groovy

            _ * classLoader.getResource("META-INF/gradle-plugins/noImpl.properties") >> url
    
            when:
            pluginRegistry.lookup(DefaultPluginId.of("noImpl"))
    
            then:
            InvalidPluginException e = thrown()
            e.message == "No implementation class specified for plugin 'noImpl' in $url."
    
            when:
            pluginRegistry.lookup(DefaultPluginId.of("noImpl"))
    
            then:
            e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 13K bytes
    - Viewed (0)
  2. src/net/http/cookie_test.go

    func (ho headerOnlyResponseWriter) Header() Header {
    	return Header(ho)
    }
    
    func (ho headerOnlyResponseWriter) Write([]byte) (int, error) {
    	panic("NOIMPL")
    }
    
    func (ho headerOnlyResponseWriter) WriteHeader(int) {
    	panic("NOIMPL")
    }
    
    func TestSetCookie(t *testing.T) {
    	m := make(Header)
    	SetCookie(headerOnlyResponseWriter(m), &Cookie{Name: "cookie-1", Value: "one", Path: "/restricted/"})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/math/rand/v2/normal.go

    	}
    	return uint32(i)
    }
    
    // NormFloat64 returns a normally distributed float64 in
    // the range -math.MaxFloat64 through +math.MaxFloat64 inclusive,
    // with standard normal distribution (mean = 0, stddev = 1).
    // To produce a different normal distribution, callers can
    // adjust the output using:
    //
    //	sample = NormFloat64() * desiredStdDev + desiredMean
    func (r *Rand) NormFloat64() float64 {
    	for {
    		u := r.Uint64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:08:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. src/math/rand/normal.go

    	}
    	return uint32(i)
    }
    
    // NormFloat64 returns a normally distributed float64 in
    // the range -[math.MaxFloat64] through +[math.MaxFloat64] inclusive,
    // with standard normal distribution (mean = 0, stddev = 1).
    // To produce a different normal distribution, callers can
    // adjust the output using:
    //
    //	sample = NormFloat64() * desiredStdDev + desiredMean
    func (r *Rand) NormFloat64() float64 {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

    {identifier} + AdoptOpenJDK JRE 9+2{normal}
         | Location:           {description}path{normal}
         | Language Version:   {description}9{normal}
         | Vendor:             {description}AdoptOpenJDK{normal}
         | Architecture:       {description}archName{normal}
         | Is JDK:             {description}false{normal}
         | Detected by:        {description}TestSource{normal}
    
    {identifier} + AdoptOpenJDK JRE 14+2{normal}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/text/StyledTableTest.groovy

                "",
                ["a", "b"],
                [
                    new StyledTable.Row(["foo", "bar"], StyledTextOutput.Style.Normal),
                    new StyledTable.Row(["very long", "short"], StyledTextOutput.Style.Normal),
                    new StyledTable.Row(["tiny", "even longer"], StyledTextOutput.Style.Normal)
                ]
            )
    
            expect:
            StyledTableUtil.toString(table) == """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 25 00:22:38 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

        static final String STACKTRACE = "{info}> {normal}Run with {userinput}--stacktrace{normal} option to get the stack trace."
        static final String INFO_OR_DEBUG = "{info}> {normal}Run with {userinput}--info{normal} or {userinput}--debug{normal} option to get more log output."
        static final String INFO = "{info}> {normal}Run with {userinput}--info{normal} option to get more log output."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ToolchainReportRendererTest.groovy

         | Location:           {description}path{normal}
         | Language Version:   {description}8{normal}
         | Vendor:             {description}vendorName{normal}
         | Architecture:       {description}myArch{normal}
         | Is JDK:             {description}false{normal}
         | Detected by:        {description}SourceSupplier{normal}
    
    """)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunnerTest.groovy

            WatchMode.DEFAULT  | VfsLogging.NORMAL  | WatchLogging.NORMAL | false
            WatchMode.DEFAULT  | VfsLogging.VERBOSE | WatchLogging.DEBUG  | false
            WatchMode.DEFAULT  | VfsLogging.NORMAL  | WatchLogging.DEBUG  | true
            WatchMode.ENABLED  | VfsLogging.VERBOSE | WatchLogging.NORMAL | true
            WatchMode.ENABLED  | VfsLogging.NORMAL  | WatchLogging.NORMAL | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/graph/DirectedGraphRendererTest.groovy

            when:
            renderer.renderTo("1", output)
    
            then:
            output.value == """[1]
    {info}+--- {normal}[2]
    {info}|    \\--- {normal}[4]
    {info}\\--- {normal}[3]
    {info}     \\--- {normal}[2] (*)
    
    {info}(*) - details omitted (listed previously){normal}
    """
        }
    
        def "renders a graph that contains cycles"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.3K bytes
    - Viewed (0)
Back to top