Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for processDir (0.24 sec)

  1. .teamcity/test-buckets.json

    					"launcher",
    					"time",
    					"logging-api",
    					"kotlin-dsl-plugins",
    					"serialization",
    					"toolchains-jvm-shared",
    					"docs-asciidoctor-extensions-base",
    					"internal-instrumentation-processor",
    					"security",
    					"input-tracking",
    					"base-ide-plugins"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"testing-jvm",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. src/sync/atomic/atomic_test.go

    				c <- 1
    			}()
    		}
    		for p := 0; p < procs; p++ {
    			<-c
    		}
    	}
    }
    
    func TestStoreLoadSeqCst32(t *testing.T) {
    	if runtime.NumCPU() == 1 {
    		t.Skipf("Skipping test on %v processor machine", runtime.NumCPU())
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(4))
    	N := int32(1e3)
    	if testing.Short() {
    		N = int32(1e2)
    	}
    	c := make(chan bool, 2)
    	X := [2]int32{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    //	  uint8_t isa_rev;
    //	  /* The size of general purpose registers.  */
    //	  uint8_t gpr_size;
    //	  /* The size of co-processor 1 registers.  */
    //	  uint8_t cpr1_size;
    //	  /* The size of co-processor 2 registers.  */
    //	  uint8_t cpr2_size;
    //	  /* The floating-point ABI.  */
    //	  uint8_t fp_abi;
    //	  /* Processor-specific extension.  */
    //	  uint32_t isa_ext;
    //	  /* Mask of ASEs used.  */
    //	  uint32_t ases;
    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/syscall/zsyscall_windows.go

    	if r1&0xff == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CreateToolhelp32Snapshot(flags uint32, processId uint32) (handle Handle, err error) {
    	r0, _, e1 := Syscall(procCreateToolhelp32Snapshot.Addr(), 2, uintptr(flags), uintptr(processId), 0)
    	handle = Handle(r0)
    	if handle == InvalidHandle {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func DeleteFile(path *uint16) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	OpenProcess(desiredAccess uint32, inheritHandle bool, processId uint32) (handle Handle, err error)
    //sys	ShellExecute(hwnd Handle, verb *uint16, file *uint16, args *uint16, cwd *uint16, showCmd int32) (err error) [failretval<=32] = shell32.ShellExecuteW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows.go

    //sys	ReadConsole(console Handle, buf *uint16, toread uint32, read *uint32, inputControl *byte) (err error) = kernel32.ReadConsoleW
    //sys	CreateToolhelp32Snapshot(flags uint32, processId uint32) (handle Handle, err error) [failretval==InvalidHandle] = kernel32.CreateToolhelp32Snapshot
    //sys	Process32First(snapshot Handle, procEntry *ProcessEntry32) (err error) = kernel32.Process32FirstW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

      }
    
      if ((Get-service $service).Status -ne 'Stopped') {
        # Force kill the processes.
        Stop-Process -Force -PassThru -Id (Get-WmiObject win32_process |
          Where CommandLine -Like $cmdline).ProcessId
    
        # Wait until process has stopped.
        $waited = 0
        $log_period = 10
        $timeout = 60
        while ((Get-service $service).Status -ne 'Stopped' -and $waited -lt $timeout) {
          Start-Sleep 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    +
    They should be added to the `annotationProcessor` configuration instead.
    If you don't want any processing, but your compile classpath contains a processor unintentionally (e.g. as part of a library you depend on), use the `-proc:none` compiler argument to ignore it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    	// bits, in the range [0, 1<<48).
    	//
    	// ppc64, mips64, and s390x support arbitrary 64 bit addresses
    	// in hardware. On Linux, Go leans on stricter OS limits. Based
    	// on Linux's processor.h, the user address space is limited as
    	// follows on 64-bit architectures:
    	//
    	// Architecture  Name              Maximum Value (exclusive)
    	// ---------------------------------------------------------------------
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    	MOVQ	$runtimeĀ·g0(SB), DI
    	LEAQ	(-64*1024)(SP), BX
    	MOVQ	BX, g_stackguard0(DI)
    	MOVQ	BX, g_stackguard1(DI)
    	MOVQ	BX, (g_stack+stack_lo)(DI)
    	MOVQ	SP, (g_stack+stack_hi)(DI)
    
    	// find out information about the processor we're on
    	MOVL	$0, AX
    	CPUID
    	CMPL	AX, $0
    	JE	nocpuinfo
    
    	CMPL	BX, $0x756E6547  // "Genu"
    	JNE	notintel
    	CMPL	DX, $0x49656E69  // "ineI"
    	JNE	notintel
    	CMPL	CX, $0x6C65746E  // "ntel"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top