Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 433 for newUser (0.26 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

                    public static record Child(String name) implements Parent {}
                }
            """
        }
    
        def "source compatibility lower than compiler version does not allow accessing newer Java language features"() {
            def jdk = AvailableJavaHomes.getJdk(JavaVersion.VERSION_17)
    
            buildFile << """
                apply plugin: "java"
    
                java {
                    toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/preflight.go

    			"Each plugin listed should be manually verified for compatibility with the newer version of CoreDNS. " +
    			"Once ready, the upgrade can be initiated by skipping the preflight check. During the upgrade, " +
    			"kubeadm will migrate the configuration while leaving the listed plugin configs untouched, " +
    			"but cannot guarantee that they will work with the newer version of CoreDNS.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. cmd/update_nofips.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    // Newer official download info URLs appear earlier below.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 931 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_list_upgrade_pseudo.txt

    #   * v0.1.0
    #   * v0.0.0-20190430073000-30950c05d534
    # Only v0.1.0 is tagged.
    #
    # The v0.1.1 pseudo-version is semantically higher than the latest tag.
    # The v0.0.0 pseudo-version is chronologically newer.
    
    # The latest pseudo-version is semantically higher than the latest tag.
    # 'list -u' should not suggest a lower version as an upgrade.
    
    go get example.com/pseudoupgrade@b5426c8
    go list -m -u all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 779 bytes
    - Viewed (0)
  5. cmd/update_fips.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    // Newer official download info URLs appear earlier below.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 934 bytes
    - Viewed (0)
  6. src/runtime/rt0_linux_ppc64.s

    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    	//
    	// TODO(austin): Support ABI v1 dynamic linking entry point
    	XOR	R0, R0 // Note, newer kernels may not always set R0 to 0.
    	MOVD	$runtime·rt0_go(SB), R12
    	MOVD	R12, CTR
    	MOVBZ	runtime·iscgo(SB), R5
    	CMP	R5, $0
    	BEQ	nocgo
    	BR	(CTR)
    nocgo:
    	MOVD	0(R1), R3 // argc
    	ADD	$8, R1, R4 // argv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 847 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_go_version_mixed.txt

    # Test that dependencies can use Go language features newer than the
    # Go version specified by the main module.
    
    env GO111MODULE=on
    
    go build
    
    -- go.mod --
    module m
    go 1.12
    require (
    	sub.1 v1.0.0
    )
    replace (
    	sub.1 => ./sub
    )
    
    -- x.go --
    package x
    
    import "sub.1"
    
    func F() { sub.F(0, 0) }
    
    var A sub.Alias
    var D sub.Defined
    
    -- sub/go.mod --
    module m
    go 1.14
    
    -- sub/sub.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 08 21:27:51 UTC 2019
    - 646 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/policy_test.go

    				kubeadmVersion: "v1.12.3",
    			},
    			newK8sVersion:         "v1.10.10",
    			expectedMandatoryErrs: 1, // version must be higher than v1.12.0
    			expectedSkippableErrs: 1, // can't upgrade old k8s with newer kubeadm
    		},
    		{
    			name: "upgrading two minor versions in one go is not supported",
    			vg: &fakeVersionGetter{
    				clusterVersion: "v1.11.3",
    				kubeletVersion: "v1.11.3",
    				kubeadmVersion: "v1.13.0",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryCrossProjectTargetJvmVersionIntegrationTest.groovy

         Required by:
             project :
          > Dependency resolution is looking for a library compatible with JVM runtime version 6, but 'project :producer' is only compatible with JVM runtime version 7 or newer.""")
            failure.assertHasResolution("Change the dependency on 'project :producer' to an earlier version that supports JVM runtime version 7.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux_accept.go

    func Accept(fd int) (nfd int, sa Sockaddr, err error) {
    	var rsa RawSockaddrAny
    	var len _Socklen = SizeofSockaddrAny
    	// Try accept4 first for Android and newer kernels.
    	nfd, err = accept4(fd, &rsa, &len, 0)
    	if err == ENOSYS {
    		nfd, err = accept(fd, &rsa, &len)
    	}
    	if err != nil {
    		return
    	}
    	sa, err = anyToSockaddr(&rsa)
    	if err != nil {
    		Close(nfd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 16 03:40:42 UTC 2022
    - 961 bytes
    - Viewed (0)
Back to top