Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for processDir (0.11 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. 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)
  5. 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)
  6. 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