Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 137 for processArgs (0.22 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

                        public void compile(List<String> files, CompilationUnit cu) {
                            if (shouldProcessAnnotations) {
                                // In order for the Groovy stubs to have annotation processors invoked against them, they must be compiled as source.
                                // Classes compiled as a result of being on the -sourcepath do not have the annotation processor run against them
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. docs/en/docs/async.md

    ---
    
    In this scenario of the parallel burgers, you are a computer / program 🤖 with two processors (you and your crush), both waiting 🕙 and dedicating their attention ⏯ to be "waiting on the counter" 🕙 for a long time.
    
    The fast food store has 8 processors (cashiers/cooks). While the concurrent burgers store might have had only 2 (one cashier and one cook).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    This is no longer necessary because Gradle has a separate <<java_plugin.adoc#tab:configurations,annotation processor classpath>>.
    The dependencies for annotation processors are not added to an IDEA module's classpath when a Gradle project with annotation processors is imported.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	EM_MSP430        Machine = 105 /* Texas Instruments embedded microcontroller msp430 */
    	EM_BLACKFIN      Machine = 106 /* Analog Devices Blackfin (DSP) processor */
    	EM_SE_C33        Machine = 107 /* S1C33 Family of Seiko Epson processors */
    	EM_SEP           Machine = 108 /* Sharp embedded microprocessor */
    	EM_ARCA          Machine = 109 /* Arca RISC Microprocessor */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/Files.java

       */
      @Deprecated
      @InlineMe(
          replacement = "Files.asCharSource(file, charset).readLines(callback)",
          imports = "com.google.common.io.Files")
      @CanIgnoreReturnValue // some processors won't return a useful result
      @ParametricNullness
      public
      static <T extends @Nullable Object> T readLines(
          File file, Charset charset, LineProcessor<T> callback) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    [listing]
    ----
    > Task :resolvableConfigurations
    --------------------------------------------------
    Configuration annotationProcessor
    --------------------------------------------------
    Description = Annotation processors and their dependencies for source set 'main'.
    
    Attributes
        - org.gradle.category            = library
        - org.gradle.dependency.bundling = external
        - org.gradle.jvm.environment     = standard-jvm
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/Files.java

       */
      @Deprecated
      @InlineMe(
          replacement = "Files.asCharSource(file, charset).readLines(callback)",
          imports = "com.google.common.io.Files")
      @CanIgnoreReturnValue // some processors won't return a useful result
      @ParametricNullness
      public
      static <T extends @Nullable Object> T readLines(
          File file, Charset charset, LineProcessor<T> callback) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

            enableIncrementalCompilation()
    
            then:
            fails("compileGroovy")
            failure.assertHasCause(
                'Enabling incremental compilation and configuring Java annotation processors for Groovy compilation is not allowed. ' +
                    'Disable incremental Groovy compilation or remove the Java annotation processor configuration.')
        }
    
        def "compileBadCodeWithAnnotationProcessor"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
  9. src/runtime/memmove_amd64.s

    	// 2. Unaligned save of the head's 32  bytes
    	// 3. Destination-aligned copying of body (128 bytes per iteration)
    	// 4. Put head on the new place
    	// 5. Put the tail on the new place
    	// It can be important to satisfy processor's pipeline requirements for
    	// small sizes as the cost of unaligned memory region copying is
    	// comparable with the cost of main loop. So code is slightly messed there.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/test2json.go

    // have been split) line fragments.
    //
    // It should be initialized with b set to a buffer of length 0 but non-zero capacity,
    // and line and part set to the desired input processors.
    // The lineBuffer will call line(x) for any whole line x (including the final newline)
    // that fits entirely in cap(b). It will handle input lines longer than cap(b) by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
Back to top