Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setBootstrapClasspath (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

            }
            return bootstrapClasspath;
        }
    
        public void setBootstrapClasspath(FileCollection classpath) {
            internalGetBootstrapClasspath().setFrom(classpath);
        }
    
        public void setBootstrapClasspath(Object... classpath) {
            internalGetBootstrapClasspath().setFrom(classpath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            return bootstrapClasspath;
        }
    
        /**
         * Sets the bootstrap classpath to be used for the compiler process. Defaults to {@code null}.
         *
         * @since 4.3
         */
        public void setBootstrapClasspath(@Nullable FileCollection bootstrapClasspath) {
            this.bootstrapClasspath = bootstrapClasspath;
        }
    
        /**
         * Returns the extension dirs to be used for the compiler process. Defaults to {@code null}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top