Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for STARTING (0.12 sec)

  1. src/runtime/mgc.go

    	// this G will be in the worker pool for the next findRunnableGCWorker.
    	// This isn't strictly necessary, but it reduces latency between
    	// _GCmark starting and the workers starting.
    
    	for {
    		// Go to sleep until woken by
    		// gcController.findRunnableGCWorker.
    		gopark(func(g *g, nodep unsafe.Pointer) bool {
    			node := (*gcBgMarkWorkerNode)(nodep)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "EXTRconst", argLength: 2, reg: gp21, asm: "EXTR", aux: "Int64"},   // extract 64 bits from arg0:arg1 starting at lsb auxInt, auxInt should be in the range 0 to 63.
    		{name: "EXTRWconst", argLength: 2, reg: gp21, asm: "EXTRW", aux: "Int64"}, // extract 32 bits from arg0[31:0]:arg1[31:0] starting at lsb auxInt and zero top 32 bits, auxInt should be in the range 0 to 31.
    
    		// comparisons
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    - `java-library`
    - `application`
    - `groovy`
    - `scala`
    
    Starting in Gradle 9.0, calling any of the above listed methods without the presence of the default `java` component
    will become an error.
    
    [[war_plugin_configure_configurations]]
    ==== `WarPlugin#configureConfiguration(ConfigurationContainer)`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

            else
                echo "ERROR starting API SERVER, exiting. Some process on ${API_HOST} is serving already on ${API_PORT}"
                exit 1
            fi
        fi
    
        if ! curl --silent -k -g "${API_HOST}:${API_SECURE_PORT}" ; then
            echo "API SERVER secure port is free, proceeding..."
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    // pointers have neither a bitmap nor associated type metadata.
    //
    // Bits in all cases correspond to words in little-endian order.
    //
    // For small objects, if s is the mspan for the span starting at "start",
    // then s.heapBits() returns a slice containing the bitmap for the whole span.
    // That is, s.heapBits()[0] holds the goarch.PtrSize*8 bits for the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    		// there are at least 64 bytes to clear, so add
    		// that to the remainder to generate the code
    		// to clear those doublewords
    		if ctr == 1 {
    			rem += 64
    		}
    
    		// Clear the remainder starting at offset zero
    		offset := int64(0)
    
    		if rem >= 16 && ctr <= 1 {
    			// If the XXLXOR hasn't already been
    			// generated, do it here to initialize
    			// VS32 (V0) to 0.
    			p := s.Prog(ppc64.AXXLXOR)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    		converged = true
    		for i := len(po) - 1; i >= 0; i-- {
    			b := po[i]
    			locs := blockLocs[b.ID]
    			if locs == nil {
    				locs = state.allocBlock(b)
    				blockLocs[b.ID] = locs
    			}
    
    			// Build the starting state for the block from the final
    			// state of its predecessors.
    			startState, blockChanged := state.mergePredecessors(b, blockLocs, nil, false)
    			locs.lastCheckedTime = counterTime
    			counterTime++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

        & sc.exe create csiproxy binPath= "${env:NODE_DIR}\csi-proxy.exe $flags"
        & sc.exe failure csiproxy reset= 0 actions= restart/10000
        Log-Output "Starting CSI Proxy Service"
        & sc.exe start csiproxy
        Write-VerboseServiceInfoToConsole -Service 'csiproxy' -Delay 1
      }
    }
    
    # TODO(pjh): this is copied from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    }
    
    // A Conflict is a path of requirements starting at a root or proposed root in
    // the requirement graph, explaining why that root either causes a module passed
    // in the mustSelect list to EditBuildList to be unattainable, or introduces an
    // unresolvable error in loading the requirement graph.
    type Conflict struct {
    	// Path is a path of requirements starting at some module version passed in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    	JMP	final1
    
    aes0:
    	// Return scrambled input seed
    	AESENC	X0, X0
    	MOVQ	X0, AX	// return X0
    	RET
    
    aes16:
    	MOVOU	(AX), X1
    	JMP	final1
    
    aes17to32:
    	// make second starting seed
    	PXOR	runtime·aeskeysched+16(SB), X1
    	AESENC	X1, X1
    
    	// load data to be hashed
    	MOVOU	(AX), X2
    	MOVOU	-16(AX)(CX*1), X3
    
    	// xor with seed
    	PXOR	X0, X2
    	PXOR	X1, X3
    
    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