Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getAllCompilerArgs (0.29 sec)

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

            FileCollection sourcepath = compileOptions.getSourcepath();
            this.sourcepath = sourcepath == null ? null : ImmutableList.copyOf(sourcepath.getFiles());
            this.compilerArgs = Lists.newArrayList(compileOptions.getAllCompilerArgs());
            this.encoding = compileOptions.getEncoding();
            this.bootClasspath = getAsPath(compileOptions.getBootstrapClasspath());
            this.extensionDirs = compileOptions.getExtensionDirs();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         * Returns all compiler arguments, added to the {@link #getCompilerArgs()} or the {@link #getCompilerArgumentProviders()} property.
         *
         * @since 4.5
         */
        @Internal
        public List<String> getAllCompilerArgs() {
            ImmutableList.Builder<String> builder = ImmutableList.builder();
            builder.addAll(CollectionUtils.stringize(getCompilerArgs()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.compile.BaseForkOptions.getMemoryMaximumSize()> does not have raw return type assignable to org.gradle.api.provider.Property in (BaseForkOptions.java:0)
    Method <org.gradle.api.tasks.compile.CompileOptions.getAllCompilerArgs()> does not have raw return type assignable to org.gradle.api.provider.Provider in (CompileOptions.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top