Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for STARTING (0.11 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. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    For more information see <<empty_directories_file_tree>>.
    
    ==== Format of `JavaVersion` has changed for Java 9 and Java 10
    
    The string format of the `JavaVersion` has changed to match the official Java versioning.
    Starting from Java 9, the language version must not contain the `1.` prefix.
    This affects the format of the `sourceCompatiblity` and `targetCompatibility` properties on the `JavaCompile` task and `JavaExtension`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    // were indented wholesale (starting with the very first element, rather
    // than starting at the first line break).
    func (p *printer) indentList(list []ast.Expr) bool {
    	// Heuristic: indentList reports whether there are more than one multi-
    	// line element in the list, or if there is any element that is not
    	// starting on the same line as the previous one ends.
    	if len(list) >= 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                }
            }
        }
    
        /**
         * we use LowerCaseClass to limit the resolving the compiler does for vanilla names starting with a lower case letter. The idea that if we use a vanilla name with a lower case letter, that this is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. 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)
Back to top