Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for asminit (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. guava/src/com/google/common/net/InetAddresses.java

        }
    
        // Many strategies for hashing are possible. This might suffice for now.
        int coercedHash = Hashing.murmur3_32_fixed().hashLong(addressAsLong).asInt();
    
        // Squash into 224/4 Multicast and 240/4 Reserved space (i.e. 224/3).
        coercedHash |= 0xe0000000;
    
        // Fixup to avoid some "illegal" values. Currently the only potential
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InetAddresses.java

        }
    
        // Many strategies for hashing are possible. This might suffice for now.
        int coercedHash = Hashing.murmur3_32_fixed().hashLong(addressAsLong).asInt();
    
        // Squash into 224/4 Multicast and 240/4 Reserved space (i.e. 224/3).
        coercedHash |= 0xe0000000;
    
        // Fixup to avoid some "illegal" values. Currently the only potential
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        ArrayRef<Operation*> callers = GetCallers(func);
        if (!llvm::hasSingleElement(callers) &&
            !llvm::all_of(callers.drop_front(), [&](Operation* caller) {
              /// TODO(aminim): this is overly conservative as some operations
              /// (like TPUPartitionedCallOp) may have extra operands that aren't
              /// propagated to the callee.
              return isa<CallOpInterface>(caller) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    appudo.net
    
    // Aptible : https://www.aptible.com/
    // Submitted by Thomas Orozco <******@****.***>
    on-aptible.com
    
    // ASEINet : https://www.aseinet.com/
    // Submitted by Asei SEKIGUCHI <mail@aseinet.com>
    user.aseinet.ne.jp
    gv.vc
    d.gv.vc
    
    // Asociación Amigos de la Informática "Euskalamiga" : http://encounter.eus/
    // Submitted by Hector Martin <******@****.***>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top