Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setBootstrapClasspath (0.35 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/DelegatingJavaExecSpec.java

        @Override
        default FileCollection getBootstrapClasspath() {
            return getDelegate().getBootstrapClasspath();
        }
    
        @Override
        default void setBootstrapClasspath(FileCollection classpath) {
            getDelegate().setBootstrapClasspath(classpath);
        }
    
        @Override
        default JavaForkOptions bootstrapClasspath(Object... classpath) {
            getDelegate().bootstrapClasspath(classpath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaForkOptions.java

        }
    
        @Override
        public FileCollection getBootstrapClasspath() {
            return options.getBootstrapClasspath();
        }
    
        @Override
        public void setBootstrapClasspath(FileCollection classpath) {
            options.setBootstrapClasspath(classpath);
        }
    
        @Override
        public JavaForkOptions bootstrapClasspath(Object... classpath) {
            options.bootstrapClasspath(classpath);
            return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

         * classpath for the specified JVM.
         *
         * @param classpath The classpath. Must not be null. Can be empty.
         */
        void setBootstrapClasspath(FileCollection classpath);
    
        /**
         * Adds the given values to the end of the bootstrap classpath for the process.
         *
         * @param classpath The classpath.
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top