Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,885 for LATER (0.18 sec)

  1. src/cmd/go/testdata/script/mod_init_invalid_major.txt

    ! go mod init example.com/user/repo/v02
    stderr '(?s)^go: invalid module path "example.com/user/repo/v02": major version suffixes must be in the form of /vN and are only allowed for v2 or later(.*)go mod init example.com/user/repo/v2$'
    
    ! go mod init example.com/user/repo/v023
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 21:34:32 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

        private GradleVersion consumerVersion;
    
        /**
         * This is used by consumers 1.0-milestone-3 and later
         */
        public DefaultConnection() {
            LOGGER.debug("Tooling API provider {} created.", GradleVersion.current().getVersion());
        }
    
        /**
         * This is used by consumers 1.2-rc-1 and later.
         */
        @Override
        public void configure(ConnectionParameters parameters) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. doc/next/7-ports.md

    Go 1.23 requires macOS 11 Big Sur or later;
    support for previous versions has been discontinued.
    
    ### Linux {#linux}
    
    <!-- go.dev/issue/67001 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting_test.go

    		defer lock.Unlock()
    		if !wr.Set(aval) {
    			t.Error("Set() returned false")
    		}
    	}()
    	clock.Run(nil)
    	expectGotValue(t, gots, aval)
    	goGetAndExpect(t, clock, counter, wr, gots, aval)
    	later := time.Now()
    	bval := &later
    	func() {
    		lock.Lock()
    		defer lock.Unlock()
    		if wr.Set(bval) {
    			t.Error("second Set() returned true")
    		}
    	}()
    	goGetAndExpect(t, clock, counter, wr, gots, aval)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  5. src/internal/types/testdata/spec/typeAliases1.8.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package aliasTypes
    
    type _ = /* ERROR "type alias requires go1.9 or later" */ int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 344 bytes
    - Viewed (0)
  6. test/fixedbugs/issue46525.go

    // the LICENSE file.
    
    package p
    
    import "unsafe"
    
    func main() {
    	_ = unsafe.Add(unsafe.Pointer(nil), 0) // ERROR "unsafe.Add requires go1.17 or later"
    	_ = unsafe.Slice(new(byte), 1)         // ERROR "unsafe.Slice requires go1.17 or later"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 04 01:31:23 UTC 2021
    - 409 bytes
    - Viewed (0)
  7. test/fixedbugs/issue51531.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type empty interface{}
    
    type Foo[T empty] int // ERROR "type parameter requires go1\.18 or later \(-lang was set to go1\.17; check go.mod\)"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 08 16:50:57 UTC 2022
    - 459 bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/ToolingApiUnsupportedBuildJvmCrossVersionSpec.groovy

            }
    
            then:
            GradleConnectionException e = thrown()
            e.message.startsWith("Could not execute build using ")
            e.cause.message == "Gradle ${targetDist.version.version} requires Java 8 or later to run. Your build is currently configured to use Java ${jdk.javaVersion.majorVersion}."
    
            where:
            jdk << AvailableJavaHomes.getJdks("1.5", "1.6", "1.7")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiUnsupportedVersionIntegrationTest.groovy

            UnsupportedVersionException e = thrown()
            e.message == "The version of Gradle you are using (Gradle distribution '${distroZip}') does not support the ModelBuilder API. Support for this is available in Gradle 1.2 and all later versions."
        }
    
        def "tooling api reports an error when running a build using a gradle version does not implement the tooling api"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/internal/Exceptions.java

                        targetVersion, modelType.getSimpleName(), modelType.getSimpleName(), versionAdded));
            } else {
                return new UnknownModelException(String.format("The version of Gradle you are using (%s) does not support building a model of type '%s'. Support for building custom tooling models was added in Gradle 1.6 and is available in all later versions.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top