Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 299 for 1104 (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s

    // The runtime may know about them.
    
    TEXT	·Syscall(SB),NOSPLIT,$0-56
    	JMP	syscall·Syscall(SB)
    
    TEXT	·Syscall6(SB),NOSPLIT,$0-80
    	JMP	syscall·Syscall6(SB)
    
    TEXT	·Syscall9(SB),NOSPLIT,$0-104
    	JMP	syscall·Syscall9(SB)
    
    TEXT	·RawSyscall(SB),NOSPLIT,$0-56
    	JMP	syscall·RawSyscall(SB)
    
    TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 709 bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/multiThreaded/build.gradle

    task log {
        doLast {
            def executor = Executors.newCachedThreadPool()
            (1..10).each { thread ->
                executor.execute {
                    def textOut = services.get(StyledTextOutputFactory.class).create('build')
                    (1..100).each { iteration ->
                        logger.lifecycle("log message from thread $thread iteration $iteration")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zerrors_windows.go

    	ERROR_PARTITION_FAILURE                                                   syscall.Errno = 1105
    	ERROR_INVALID_BLOCK_LENGTH                                                syscall.Errno = 1106
    	ERROR_DEVICE_NOT_PARTITIONED                                              syscall.Errno = 1107
    	ERROR_UNABLE_TO_LOCK_MEDIA                                                syscall.Errno = 1108
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 923.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/testdata/issue32233/lib/ObjC.m

    #import <Foundation/Foundation.h>
    #import <AppKit/NSAppearance.h>
    
    BOOL function(void) {
    #if defined(MAC_OS_X_VERSION_MIN_REQUIRED) && (MAC_OS_X_VERSION_MIN_REQUIRED > 101300)
      NSAppearance *darkAppearance;
      if (@available(macOS 10.14, *)) {
        darkAppearance = [NSAppearance appearanceNamed:NSAppearanceNameDarkAqua];
      }
    #endif
      return NO;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:51:40 UTC 2019
    - 508 bytes
    - Viewed (0)
  5. src/os/sys_unix.go

    //go:build unix
    
    package os
    
    // supportsCloseOnExec reports whether the platform supports the
    // O_CLOEXEC flag.
    // On Darwin, the O_CLOEXEC flag was introduced in OS X 10.7 (Darwin 11.0.0).
    // See https://support.apple.com/kb/HT1633.
    // On FreeBSD, the O_CLOEXEC flag was introduced in version 8.3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 493 bytes
    - Viewed (0)
  6. src/syscall/asm_openbsd_arm64.s

    TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
    	JMP	·rawSyscall6Internal(SB)
    
    // func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno)
    TEXT	·Syscall9(SB),NOSPLIT,$0-104
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 28 02:19:23 UTC 2021
    - 1K bytes
    - Viewed (0)
  7. src/syscall/asm_openbsd_riscv64.s

    TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
    	JMP	·rawSyscall6Internal(SB)
    
    // func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno)
    TEXT	·Syscall9(SB),NOSPLIT,$0-104
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. src/runtime/norace_test.go

    	benchmarkSyscall(b, 100, 1)
    }
    
    func BenchmarkSyscallExcess(b *testing.B) {
    	benchmarkSyscall(b, 0, 4)
    }
    
    func BenchmarkSyscallExcessWork(b *testing.B) {
    	benchmarkSyscall(b, 100, 4)
    }
    
    func benchmarkSyscall(b *testing.B, work, excess int) {
    	b.SetParallelism(excess)
    	b.RunParallel(func(pb *testing.PB) {
    		foo := 42
    		for pb.Next() {
    			runtime.Entersyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 983 bytes
    - Viewed (0)
  9. pkg/controller/tainteviction/taint_eviction_test.go

    				*addToleration(testutil.NewPod("pod1", "node1"), 1, 100),
    			},
    			oldNode:      testutil.NewNode("node1"),
    			newNode:      addTaintsToNode(testutil.NewNode("node1"), "testTaint1", "taint1", []int{1}),
    			expectDelete: false,
    		},
    		{
    			description: "Only one added taint tolerated",
    			pods: []corev1.Pod{
    				*addToleration(testutil.NewPod("pod1", "node1"), 1, 100),
    			},
    			oldNode:      testutil.NewNode("node1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s

    // The runtime may know about them.
    
    TEXT	·Syscall(SB),NOSPLIT,$0-56
    	JMP	syscall·Syscall(SB)
    
    TEXT	·Syscall6(SB),NOSPLIT,$0-80
    	JMP	syscall·Syscall6(SB)
    
    TEXT	·Syscall9(SB),NOSPLIT,$0-104
    	JMP	syscall·Syscall9(SB)
    
    TEXT	·RawSyscall(SB),NOSPLIT,$0-56
    	JMP	syscall·RawSyscall(SB)
    
    TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 677 bytes
    - Viewed (0)
Back to top