Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for 411 (0.11 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    	hwcap_ASIMDDP  = 1 << 20
    	hwcap_SHA512   = 1 << 21
    	hwcap_SVE      = 1 << 22
    	hwcap_ASIMDFHM = 1 << 23
    
    	hwcap2_SVE2 = 1 << 1
    )
    
    // linuxKernelCanEmulateCPUID reports whether we're running
    // on Linux 4.11+. Ideally we'd like to ask the question about
    // whether the current kernel contains
    // https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=77c97b4ee21290f5f083173d957843b615abbff2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildEnvironmentCrossVersionSpec.groovy

            }
    
            then:
            out.toString().contains("<${["var": "val"]}>")
        }
    
        @TargetGradleVersion(">=4.11")
        def "new Gradle versions can mutate environment on all JDK versions"() {
            given:
            toolingApi.requireDaemons() //cannot be run in embedded mode
    
            buildFile << """
                task printEnv() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. internal/http/dial_linux.go

    			// Enable TCP fast connect
    			// TCPFastOpenConnect sets the underlying socket to use
    			// the TCP fast open connect. This feature is supported
    			// since Linux 4.11.
    			_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, unix.TCP_FASTOPEN_CONNECT, 1)
    
    			// Enable TCP quick ACK, John Nagle says
    			// "Set TCP_QUICKACK. If you find a case where that makes things worse, let me know."
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go

    	SYS_CLOCK_NANOSLEEP_TIME64       = 407
    	SYS_TIMER_GETTIME64              = 408
    	SYS_TIMER_SETTIME64              = 409
    	SYS_TIMERFD_GETTIME64            = 410
    	SYS_TIMERFD_SETTIME64            = 411
    	SYS_UTIMENSAT_TIME64             = 412
    	SYS_PSELECT6_TIME64              = 413
    	SYS_PPOLL_TIME64                 = 414
    	SYS_IO_PGETEVENTS_TIME64         = 416
    	SYS_RECVMMSG_TIME64              = 417
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go

    	SYS_CLOCK_NANOSLEEP_TIME64       = 407
    	SYS_TIMER_GETTIME64              = 408
    	SYS_TIMER_SETTIME64              = 409
    	SYS_TIMERFD_GETTIME64            = 410
    	SYS_TIMERFD_SETTIME64            = 411
    	SYS_UTIMENSAT_TIME64             = 412
    	SYS_PSELECT6_TIME64              = 413
    	SYS_PPOLL_TIME64                 = 414
    	SYS_IO_PGETEVENTS_TIME64         = 416
    	SYS_RECVMMSG_TIME64              = 417
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go

    	SYS_CLOCK_NANOSLEEP_TIME64       = 407
    	SYS_TIMER_GETTIME64              = 408
    	SYS_TIMER_SETTIME64              = 409
    	SYS_TIMERFD_GETTIME64            = 410
    	SYS_TIMERFD_SETTIME64            = 411
    	SYS_UTIMENSAT_TIME64             = 412
    	SYS_PSELECT6_TIME64              = 413
    	SYS_PPOLL_TIME64                 = 414
    	SYS_IO_PGETEVENTS_TIME64         = 416
    	SYS_RECVMMSG_TIME64              = 417
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

            // 3.x - 4.6 works on Java 7 - 8
            if (isSameOrOlder("4.6")) {
                return javaVersion >= JavaVersion.VERSION_1_7 && javaVersion <= JavaVersion.VERSION_1_8
            }
    
            if (isSameOrOlder("4.11")) {
                return javaVersion >= JavaVersion.VERSION_1_7 && javaVersion <= JavaVersion.VERSION_1_10
            }
    
            // 5.4 officially added support for JDK 12, but it worked before then.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

                [version: "4.1.3", servletContainer: "jetty11", javaMinVersion: JavaVersion.VERSION_11]
            ]
    
            // https://plugins.gradle.org/plugin/org.ajoberstar.grgit
            static grgit = "4.1.1"
    
            // https://plugins.gradle.org/plugin/com.github.ben-manes.versions
            static gradleVersions = "0.51.0"
    
            // https://plugins.gradle.org/plugin/org.gradle.playframework
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/crypto/aes/asm_ppc64x.s

    	P8_LXVB16X(R4, R0, V0)
    
    	// V1, V2 will hold keys, V0 is a temp.
    	// At completion, V2 will hold the ciphertext.
    	// Load xk[0:3] and xor with text
    	LXVD2X	(R0+R5), V1
    	VXOR	V0, V1, V0
    
    	// Load xk[4:11] and cipher
    	LXVD2X	(R6+R5), V1
    	LXVD2X	(R7+R5), V2
    	VCIPHER	V0, V1, V0
    	VCIPHER	V0, V2, V0
    
    	// Load xk[12:19] and cipher
    	LXVD2X	(R8+R5), V1
    	LXVD2X	(R9+R5), V2
    	VCIPHER	V0, V1, V0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/scope.h

    ///
    /// A simple example:
    ///
    ///     using namespace ops;
    ///     Scope root = Scope::NewRootScope();
    ///     auto c1 = Const(root, { {1, 1} });
    ///     auto m = MatMul(root, c1, { {41}, {1} });
    ///     GraphDef gdef;
    ///     Status s = root.ToGraphDef(&gdef);
    ///     if (!s.ok()) { ... }
    ///
    /// Scope hierarchy:
    ///
    /// The Scope class provides various With<> functions that create a new scope.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top