Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 118 for processArgs (0.13 sec)

  1. src/runtime/runtime1.go

    // int64 division is lowered into _divv() call on 386, which does not fit into nosplit functions.
    // Handles overflow in a time-specific manner.
    // This keeps us within no-split stack limits on 32-bit processors.
    //
    //go:nosplit
    func timediv(v int64, div int32, rem *int32) int32 {
    	res := int32(0)
    	for bit := 30; bit >= 0; bit-- {
    		if v >= int64(div)<<uint(bit) {
    			v = v - (int64(div) << uint(bit))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * A <<#rel4.6:annotation_processor_configuration,change to the way you add Java annotation processors to a project>>.
     * The <<#rel5.0:default_memory_settings,default memory settings>> for the command-line client, the Gradle daemon, and all workers including compilers and test executors, have been greatly reduced.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    === Step 2. Convert to the Worker API
    
    Although this task processes each file in sequence, the processing of each file is independent of any other file.
    This work can be done in parallel and take advantage of multiple processors.
    This is where the Worker API can help.
    
    To use the Worker API, you need to define an interface that represents the parameters of each unit of work and extends `org.gradle.workers.WorkParameters`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    `org.gradle.workers.max=(max # of worker processes)`::
    When configured, Gradle will use a maximum of the <<command_line_interface.adoc#sec:command_line_performance,given number of workers>>.
    +
    _Default is the number of CPU processors._
    
    === Using Gradle properties
    
    The following examples demonstrate how to use Gradle properties.
    
    *Example 1:* Setting Gradle properties with a `gradle.properties` file:
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. src/runtime/metrics/description.go

    			"metrics.",
    		Kind:       KindFloat64,
    		Cumulative: true,
    	},
    	{
    		Name: "/cpu/classes/gc/mark/dedicated:cpu-seconds",
    		Description: "Estimated total CPU time spent performing GC tasks on " +
    			"processors (as defined by GOMAXPROCS) dedicated to those tasks. " +
    			"This metric is an overestimate, and not directly comparable to " +
    			"system CPU time measurements. Compare only with other /cpu/classes " +
    			"metrics.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. src/runtime/metrics/doc.go

    		comparable to system CPU time measurements. Compare only with
    		other /cpu/classes metrics.
    
    	/cpu/classes/gc/mark/dedicated:cpu-seconds
    		Estimated total CPU time spent performing GC tasks on processors
    		(as defined by GOMAXPROCS) dedicated to those tasks. This metric
    		is an overestimate, and not directly comparable to system CPU
    		time measurements. Compare only with other /cpu/classes metrics.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    DATA bad_cpu_msg<>+0x00(SB)/84, $"This program can only be run on AMD64 processors with v2 microarchitecture support.\n"
    #endif
    
    #ifdef GOAMD64_v3
    DATA bad_cpu_msg<>+0x00(SB)/84, $"This program can only be run on AMD64 processors with v3 microarchitecture support.\n"
    #endif
    
    #ifdef GOAMD64_v4
    DATA bad_cpu_msg<>+0x00(SB)/84, $"This program can only be run on AMD64 processors with v4 microarchitecture support.\n"
    #endif
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. src/crypto/sha256/sha256block_amd64.s

    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    
    // The avx2-version is described in an Intel White-Paper:
    // "Fast SHA-256 Implementations on Intel Architecture Processors"
    // To find it, surf to http://www.intel.com/p/en_US/embedded
    // and search for that title.
    // AVX2 version by Intel, same algorithm as code in Linux kernel:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/obj5.go

    		if p.To.Type == obj.TYPE_MEM && (p.To.Name == obj.NAME_EXTERN || p.To.Name == obj.NAME_STATIC) && p.To.Sym != nil {
    			p.To.Type = obj.TYPE_BRANCH
    		}
    	}
    
    	// Replace TLS register fetches on older ARM processors.
    	switch p.As {
    	// Treat MRC 15, 0, <reg>, C13, C0, 3 specially.
    	case AMRC:
    		if p.To.Offset&0xffff0fff == 0xee1d0f70 {
    			// Because the instruction might be rewritten to a BL which returns in R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/ByteStreams.java

       * @return the result of the byte processor
       * @throws IOException if an I/O error occurs
       * @since 14.0
       */
      @CanIgnoreReturnValue // some processors won't return a useful result
      @ParametricNullness
      public static <T extends @Nullable Object> T readBytes(
          InputStream input, ByteProcessor<T> processor) throws IOException {
        checkNotNull(input);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top