Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 137 for processArgs (0.15 sec)

  1. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

            annotationProcessorConfiguration.setVisible(false);
            annotationProcessorConfiguration.setDescription("Annotation processors and their dependencies for " + sourceSetName + ".");
            jvmPluginServices.configureAsRuntimeClasspath(annotationProcessorConfiguration);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  2. src/crypto/sha512/sha512block_amd64.s

    	CMPQ	SI, 640(SP)
    	JB	loop
    
    end:
    	RET
    
    // Version below is based on "Fast SHA512 Implementations on Intel
    // Architecture Processors" White-paper
    // https://www.intel.com/content/dam/www/public/us/en/documents/white-papers/fast-sha512-implementations-ia-processors-paper.pdf
    // AVX2 version by Intel, same algorithm in Linux kernel:
    // https://github.com/torvalds/linux/blob/master/arch/x86/crypto/sha512-avx2-asm.S
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Discard tags that match this regexp"),
    	// Heap profile options
    	"divide_by": helpText(
    		"Ratio to divide all samples before visualization",
    		"Divide all samples values by a constant, eg the number of processors or jobs."),
    	"mean": helpText(
    		"Average sample value over first value (count)",
    		"For memory profiles, report average memory per allocation.",
    		"For time-based profiles, report average time per event."),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. android/guava/src/com/google/common/io/CharSource.java

       *
       * @throws IOException if an I/O error occurs while reading from this source or if {@code
       *     processor} throws an {@code IOException}
       * @since 16.0
       */
      @CanIgnoreReturnValue // some processors won't return a useful result
      @ParametricNullness
      public <T extends @Nullable Object> T readLines(LineProcessor<T> processor) throws IOException {
        checkNotNull(processor);
    
        Closer closer = Closer.create();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top