Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 137 for processArgs (0.23 sec)

  1. ci/official/containers/linux_arm64/devel.usertools/repack_libtensorflow.sh

    # Helper function to copy a srcjar after moving any source files
    # directly under the root to the "maven-style" src/main/java layout
    #
    # Source files generated by annotation processors appear directly
    # under the root of srcjars jars created by bazel, rather than under
    # the maven-style src/main/java subdirectory.
    #
    # Bazel manages annotation generated source as follows: First, it
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

         *
         * @param classpath The classpath. Should not be null.
         */
        void setCompileClasspath(FileCollection classpath);
    
        /**
         * Returns the classpath used to load annotation processors when compiling this source set.
         * This path is also used for annotation processor discovery. The classpath can be empty,
         * which means use the compile classpath; if you want to disable annotation processing,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/UnknownIncrementalAnnotationProcessingIntegrationTest.groovy

            a.text = "@Thing class A { public void foo() {} }"
            run "compileJava"
    
            then:
            outputs.recompiledClasses("A", "AThing", "B")
        }
    
        def "the user is informed about non-incremental processors"() {
            def a = java "@Thing class A {}"
    
            when:
            run "compileJava"
            a.text = "@Thing class A { public void foo() {} }"
            run "compileJava", "--info"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.processors;
    
    import org.gradle.api.internal.tasks.testing.TestCompleteEvent;
    import org.gradle.api.internal.tasks.testing.TestDescriptorInternal;
    import org.gradle.api.internal.tasks.testing.TestResultProcessor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. test-site/activator

        echo "Detected MAC OSX launched script...."
        echo "Swapping to UI"
        addResidual "ui"
      }
    }
    
    # Processes incoming arguments and places them in appropriate global variables.  called by the run method.
    process_args () {
      while [[ $# -gt 0 ]]; do
        case "$1" in
           -h|-help) usage; exit 1 ;;
        -v|-verbose) verbose=1 && shift ;;
          -d|-debug) debug=1 && shift ;;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.processors
    
    import org.gradle.api.internal.tasks.testing.*
    import org.gradle.api.internal.tasks.testing.redirector.TestOutputRedirector
    import spock.lang.Specification
    import spock.lang.Subject
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompiler.java

            return delegate.execute(spec);
        }
    
        /**
         * Scans the processor path for processor declarations. Filters them if the explicit <code>-processor</code> argument is given.
         * Treats explicit processors that didn't have a matching declaration on the path as non-incremental.
         */
        private Set<AnnotationProcessorDeclaration> getEffectiveAnnotationProcessors(JavaCompileSpec spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. ci/official/utilities/repack_libtensorflow.sh

    # Helper function to copy a srcjar after moving any source files
    # directly under the root to the "maven-style" src/main/java layout
    #
    # Source files generated by annotation processors appear directly
    # under the root of srcjars jars created by bazel, rather than under
    # the maven-style src/main/java subdirectory.
    #
    # Bazel manages annotation generated source as follows: First, it
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 19:47:53 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

            !file("build/generated/sources/annotationProcessor/java/main/ServiceRegistryResource.txt").exists()
    
            and:
            outputs.deletedClasses("ServiceRegistry")
        }
    
        def "processors can generate identical resources in different locations"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/TestMainActionTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.testing.processors
    
    import org.gradle.api.internal.tasks.testing.TestClassProcessor
    import org.gradle.api.internal.tasks.testing.TestResultProcessor
    import org.gradle.internal.time.Clock
    import org.gradle.internal.work.WorkerLeaseRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top