Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,255 for yearly (0.33 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/GenerateEclipseClasspath.java

    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    
    /**
     * Generates an Eclipse <code>.classpath</code> file. If you want to fine tune the eclipse configuration
     * <p>
     * At this moment nearly all configuration is done via {@link EclipseClasspath}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateEclipseClasspath extends XmlGeneratorTask<Classpath> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. guava-gwt/test/com/google/common/escape/testing/Testing.gwt.xml

        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/run_vendor.txt

    cd vend/hello
    go run hello.go
    stdout 'hello, world'
    
    -- vend/hello/hello.go --
    package main
    
    import (
    	"fmt"
    	"strings" // really ../vendor/strings
    )
    
    func main() {
    	fmt.Printf("%s\n", strings.Msg)
    }
    -- vend/hello/hello_test.go --
    package main
    
    import (
    	"strings" // really ../vendor/strings
    	"testing"
    )
    
    func TestMsgInternal(t *testing.T) {
    	if strings.Msg != "hello, world" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 532 bytes
    - Viewed (0)
  4. guava-gwt/src/com/google/thirdparty/publicsuffix/PublicSuffixType.gwt.xml

        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. src/internal/lazytemplate/lazytemplate.go

    // happen immediately.
    func New(name, text string) *Template {
    	lt := &Template{name: name, text: text}
    	if inTest {
    		// In tests, always parse the templates early.
    		lt.tp()
    	}
    	return lt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/PluginBuildsNestingIntegrationTest.groovy

                }
            """
            build1.settingsFile << """
                includeBuild("../${build2.buildName}")
            """
    
            then:
            succeeds()
        }
    
        def "can nest early included plugin builds"() {
            when:
            settingsFile << """
                pluginManagement {
                    includeBuild("${build1.buildName}")
                }
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 08 11:18:10 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r41/InitScriptCrossVersionSpec.groovy

            def initScript = file("init.gradle") << """
                rootProject { root ->
                    if (root.state.executed) {
                        throw new IllegalStateException("Root project should not be evaluated too early")
                    }
                }
            """
            when:
            withConnection { ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. guava-gwt/test/com/google/common/collect/testing/google/Google.gwt.xml

        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. src/net/http/httputil/persist.go

    // This is an API usage error - the local side is closed.
    // ErrPersistEOF (above) reports that the remote side is closed.
    var errClosed = errors.New("i/o operation on closed connection")
    
    // ServerConn is an artifact of Go's early HTTP implementation.
    // It is low-level, old, and unused by Go's current HTTP stack.
    // We should have deleted it before Go 1.
    //
    // Deprecated: Use the Server in package [net/http] instead.
    type ServerConn struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    Continuous improvement combined with frequent delivery allows new features to be available to users early.
    Early users provide invaluable feedback, which is incorporated into the development process.
    
    Getting new functionality into the hands of users regularly is a core value of the Gradle platform.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top