Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for AMD (0.09 sec)

  1. src/cmd/link/internal/ld/ld.go

    	if !ctxt.DynlinkingGo() {
    		return nil, 0
    	}
    	amd := ctxt.loader.LookupOrCreateSym("runtime.addmoduledata", 0)
    	if ctxt.loader.SymType(amd) == sym.STEXT && ctxt.BuildMode != BuildModePlugin {
    		// we're linking a module containing the runtime -> no need for
    		// an init function
    		return nil, 0
    	}
    	ctxt.loader.SetAttrReachable(amd, true)
    
    	// Create a new init func text symbol. Caller will populate this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java

                if (cleanGraph.isEmptyEdges()) {
                    // single entry in the classpath, populated from itself
                    ArtifactMetadata amd = cleanGraph.getEntry().getMd();
                    cpc.add(amd);
                } else {
                    ClasspathGraphVisitor v = new ClasspathGraphVisitor(cleanGraph, cpc);
                    MetadataGraphVertex entry = cleanGraph.getEntry();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. pkg/ctrlz/assets/static/js/clipboard-1.7.1.min.js

     * clipboard.js v1.7.1
     * https://zenorocha.github.io/clipboard.js
     *
     * Licensed MIT © Zeno Rocha
     */
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    											{
    												Key:      "GPU",
    												Operator: v1.NodeSelectorOpExists,
    											}, {
    												Key:      "GPU",
    												Operator: v1.NodeSelectorOpNotIn,
    												Values:   []string{"AMD", "INTER"},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			labels: map[string]string{
    				"GPU": "NVIDIA-GRID-K1",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  5. src/runtime/sys_solaris_amd64.s

    	CALL	runtime·mstart(SB)
    
    	XORL	AX, AX			// return 0 == success
    	MOVL	AX, ret+8(FP)
    	RET
    
    // Careful, this is called by __sighndlr, a libc function. We must preserve
    // registers as per AMD 64 ABI.
    TEXT runtime·sigtramp(SB),NOSPLIT|TOPFRAME|NOFRAME,$0
    	// Note that we are executing on altsigstack here, so we have
    	// more stack available than NOSPLIT would have us believe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. src/runtime/rand.go

    //
    //go:nosplit
    //go:linkname rand
    func rand() uint64 {
    	// Note: We avoid acquirem here so that in the fast path
    	// there is just a getg, an inlined c.Next, and a return.
    	// The performance difference on a 16-core AMD is
    	// 3.7ns/call this way versus 4.3ns/call with acquirem (+16%).
    	mp := getg().m
    	c := &mp.chacha8
    	for {
    		// Note: c.Next is marked nosplit,
    		// so we don't need to use mp.locks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. README.md

    ## GNU/Linux
    
    Use the following command to run a standalone MinIO server on Linux hosts running 64-bit Intel/AMD architectures. Replace ``/data`` with the path to the drive or directory in which you want MinIO to store data.
    
    ```sh
    wget https://dl.min.io/server/minio/release/linux-amd64/minio
    chmod +x minio
    ./minio server /data
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

        public static final String RESUME_FROM = "rf";
    
        public static final String PROJECT_LIST = "pl";
    
        public static final String ALSO_MAKE = "am";
    
        public static final String ALSO_MAKE_DEPENDENTS = "amd";
    
        public static final String LOG_FILE = "l";
    
        public static final String ENCRYPT_MASTER_PASSWORD = "emp";
    
        public static final String ENCRYPT_PASSWORD = "ep";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/runtime/asm_386.s

    	// RDTSCP is supported by Intel Nehalem (2008) and
    	// AMD K8 Rev. F (2006) and newer.
    	RDTSCP
    done:
    	MOVL	AX, ret_lo+0(FP)
    	MOVL	DX, ret_hi+4(FP)
    	RET
    fences:
    	// MFENCE is instruction stream serializing and flushes the
    	// store buffers on AMD. The serialization semantics of LFENCE on AMD
    	// are dependent on MSR C001_1029 and CPU generation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    		switch p {
    		default:
    			nprefix = pos
    			break ReadPrefixes
    
    		// Group 1 - lock and repeat prefixes
    		// According to Intel, there should only be one from this set,
    		// but according to AMD both can be present.
    		case 0xF0:
    			if lockIndex >= 0 {
    				inst.Prefix[lockIndex] |= PrefixIgnored
    			}
    			lockIndex = pos
    		case 0xF2, 0xF3:
    			if repIndex >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top