Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 80 for asminit (0.14 sec)

  1. src/runtime/os_linux.go

    // Called on the new thread, cannot allocate memory.
    func minit() {
    	minitSignals()
    
    	// Cgo-created threads and the bootstrap m are missing a
    	// procid. We need this for asynchronous preemption and it's
    	// useful in debuggers.
    	getg().m.procid = uint64(gettid())
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	unminitSignals()
    	getg().m.procid = 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. docs/tr/docs/async.md

    Kasiyer 💁 size bir sıra numarası verir.
    
    Beklerken askınla 😍 bir masaya oturur ve uzun bir süre konuşursunuz(Burgerleriniz çok çılgın olduğundan ve hazırlanması biraz zaman alıyor ✨🍔✨).
    
    Hamburgeri beklerkenki zamanı 🍔, aşkının ne kadar zeki ve tatlı olduğuna hayran kalarak harcayabilirsin ✨😍✨.
    
    Aşkınla 😍 konuşurken arada sıranın size gelip gelmediğini kontrol ediyorsun.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

            this.requestedJvmBasedOnJavaHome = requestedJvmBasedOnJavaHome;
        }
    
        public void applyDefaultsFor(JavaLanguageVersion javaVersion) {
            if (javaVersion.asInt() >= 9) {
                Set<String> jpmsArgs = new LinkedHashSet<>(ALLOW_ENVIRONMENT_VARIABLE_OVERWRITE);
                jpmsArgs.addAll(JpmsConfiguration.GRADLE_DAEMON_JPMS_ARGS);
                jvmOptions.jvmArgs(jpmsArgs);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. src/runtime/sys_solaris_amd64.s

    TEXT runtime·settls(SB),NOSPLIT,$8
    	RET
    
    // void libc_miniterrno(void *(*___errno)(void));
    //
    // Set the TLS errno pointer in M.
    //
    // Called using runtime·asmcgocall from os_solaris.c:/minit.
    // NOT USING GO CALLING CONVENTION.
    TEXT runtime·miniterrno(SB),NOSPLIT,$0
    	// asmcgocall will put first argument into DI.
    	CALL	DI	// SysV ABI so returns in AX
    	get_tls(CX)
    	MOVQ	g(CX), BX
    	MOVQ	g_m(BX), BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            init.javaVersion = "11"
    
            when:
            def version = init.getJavaLanguageVersion(userQuestions, buildInitializer)
    
            then:
            version.asInt() == 11
        }
    
        def "gets useful error when requesting invalid Java target"() {
            given:
            def userQuestions = Mock(UserQuestions)
            def buildInitializer = Mock(BuildInitializer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/aenum.go

    	AFCOML
    	AFCOMLP
    	AFCOMW
    	AFCOMWP
    	AFCOS
    	AFDECSTP
    	AFDIVD
    	AFDIVDP
    	AFDIVF
    	AFDIVL
    	AFDIVRD
    	AFDIVRDP
    	AFDIVRF
    	AFDIVRL
    	AFDIVRW
    	AFDIVW
    	AFFREE
    	AFINCSTP
    	AFINIT
    	AFLD1
    	AFLDCW
    	AFLDENV
    	AFLDL2E
    	AFLDL2T
    	AFLDLG2
    	AFLDLN2
    	AFLDPI
    	AFLDZ
    	AFMOVB
    	AFMOVBP
    	AFMOVD
    	AFMOVDP
    	AFMOVF
    	AFMOVFP
    	AFMOVL
    	AFMOVLP
    	AFMOVV
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

            return spec;
        }
    
        private void configureCompatibilityOptions(DefaultGroovyJavaJointCompileSpec spec) {
            String toolchainVersion = JavaVersion.toVersion(getToolchain().getLanguageVersion().asInt()).toString();
            String sourceCompatibility = getSourceCompatibility();
            // Compatibility can be null if no convention was configured, e.g. when JavaBasePlugin is not applied
            if (sourceCompatibility == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

            def filter = createSpec()
            filter.languageVersion.set(JavaLanguageVersion.of(8))
            def toolchain = queryService.findMatchingToolchain(filter).get()
    
            then:
            toolchain.languageVersion.asInt() == 8
            toolchain.getInstallationPath().toString() == systemSpecificAbsolutePath("/path/8.0.242.hs-adpt")
        }
    
        def "returns failing provider if no toolchain matches"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/runtime/alg.go

    // used in asm_{386,amd64,arm64}.s to seed the hash function
    var aeskeysched [hashRandomBytes]byte
    
    // used in hash{32,64}.go to seed the hash function
    var hashkey [4]uintptr
    
    func alginit() {
    	// Install AES hash algorithms if the instructions needed are present.
    	if (GOARCH == "386" || GOARCH == "amd64") &&
    		cpu.X86.HasAES && // AESENC
    		cpu.X86.HasSSSE3 && // PSHUFB
    		cpu.X86.HasSSE41 { // PINSR{D,Q}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    //
    // This must be set by the OS init code (typically in osinit) before
    // mallocinit.
    var physPageSize uintptr
    
    // physHugePageSize is the size in bytes of the OS's default physical huge
    // page size whose allocation is opaque to the application. It is assumed
    // and verified to be a power of two.
    //
    // If set, this must be set by the OS init code (typically in osinit) before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top