Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 925 for Machines (0.32 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    			if i == len(uname.Version)-1 {
    				uname.Version[i] = 0
    			} else {
    				uname.Version[i] = ' '
    			}
    		}
    	}
    
    	mib = []_C_int{CTL_HW, HW_MACHINE}
    	n = unsafe.Sizeof(uname.Machine)
    	if err := sysctl(mib, &uname.Machine[0], &n, nil, 0); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    func Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	if raceenabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. src/go/printer/printer_test.go

    	go func() {
    		runcheck(t, source, golden, mode)
    		cc <- 0
    	}()
    
    	// wait with timeout
    	select {
    	case <-time.After(10 * time.Second): // plenty of a safety margin, even for very slow machines
    		// test running past time out
    		t.Errorf("%s: running too slowly", source)
    	case <-cc:
    		// test finished within allotted time margin
    	}
    }
    
    type entry struct {
    	source, golden string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    	case sys.MIPS, sys.MIPS64:
    		eh.Machine = uint16(elf.EM_MIPS)
    	case sys.Loong64:
    		eh.Machine = uint16(elf.EM_LOONGARCH)
    	case sys.ARM:
    		eh.Machine = uint16(elf.EM_ARM)
    	case sys.AMD64:
    		eh.Machine = uint16(elf.EM_X86_64)
    	case sys.ARM64:
    		eh.Machine = uint16(elf.EM_AARCH64)
    	case sys.I386:
    		eh.Machine = uint16(elf.EM_386)
    	case sys.PPC64:
    		eh.Machine = uint16(elf.EM_PPC64)
    	case sys.RISCV64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/cache.go

    //
    // It is safe for multiple processes on a single machine to use the
    // same cache directory in a local file system simultaneously.
    // They will coordinate using operating system file locks and may
    // duplicate effort but will not corrupt the cache.
    //
    // However, it is NOT safe for multiple processes on different machines
    // to share a cache directory (for example, if the directory were stored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    ====
    
    === Selecting toolchains by virtual machine implementation
    
    If your project requires a specific implementation, you can filter based on the implementation as well.
    Currently available implementations to choose from are:
    
    `VENDOR_SPECIFIC`::
    Acts as a placeholder and matches any implementation from any vendor (e.g. hotspot, zulu, ...)
    `J9`::
    Matches only virtual machine implementations using the OpenJ9/IBM J9 runtime engine.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. src/runtime/sys_openbsd_arm.s

    	ADD	$16, R13
    	MOVM.IA.W (R13), [R4-R11]
    
    	RET
    
    TEXT ·publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    	B	runtime·armPublicationBarrier(SB)
    
    // TODO(jsing): OpenBSD only supports GOARM=7 machines... this
    // should not be needed, however the linker still allows GOARM=5
    // on this platform.
    TEXT runtime·read_tls_fallback(SB),NOSPLIT|NOFRAME,$0
    	MOVM.WP	[R1, R2, R3, R12], (R13)
    	MOVW	$330, R12		// sys___get_tcb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. src/runtime/proc_test.go

    // doesn't cause a crash at startup. See issue 38474.
    func TestBigGOMAXPROCS(t *testing.T) {
    	t.Parallel()
    	output := runTestProg(t, "testprog", "NonexistentTest", "GOMAXPROCS=1024")
    	// Ignore error conditions on small machines.
    	for _, errstr := range []string{
    		"failed to create new OS thread",
    		"cannot allocate memory",
    	} {
    		if strings.Contains(output, errstr) {
    			t.Skipf("failed to create 1024 threads")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    	// so we really only need to run this check once anywhere to get adequate coverage.
    	// To help developers avoid trybot-only failures, we try to run on typical developer machines
    	// which is darwin,linux,windows/amd64 and darwin/arm64.
    	//
    	// The same logic applies to the release notes that correspond to each api/next file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            config.description("is annotated with @${config.annotatedWith} but missing a normalization strategy")
                .reason("If you don't declare the normalization, outputs can't be re-used between machines or locations on the same machine, therefore caching efficiency drops significantly")
                .solution("Declare the normalization strategy by annotating the property with either @PathSensitive, @Classpath or @CompileClasspath")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  10. src/net/net.go

    // provided Buffers, else it should report a non-nil error.
    type buffersWriter interface {
    	writeBuffers(*Buffers) (int64, error)
    }
    
    // Buffers contains zero or more runs of bytes to write.
    //
    // On certain machines, for certain types of connections, this is
    // optimized into an OS-specific batch write operation (such as
    // "writev").
    type Buffers [][]byte
    
    var (
    	_ io.WriterTo = (*Buffers)(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top