Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for setBootstrapClasspath (0.38 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/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)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/process/internal/JavaExecHandleBuilder.java

        }
    
        @Override
        public FileCollection getBootstrapClasspath() {
            return javaOptions.getBootstrapClasspath();
        }
    
        @Override
        public void setBootstrapClasspath(FileCollection classpath) {
            javaOptions.setBootstrapClasspath(classpath);
        }
    
        @Override
        public JavaForkOptions bootstrapClasspath(Object... classpath) {
            javaOptions.bootstrapClasspath(classpath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 27 09:47:37 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/JavaExec.java

            return javaExecSpec.getBootstrapClasspath();
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public void setBootstrapClasspath(FileCollection classpath) {
            javaExecSpec.setBootstrapClasspath(classpath);
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public JavaExec bootstrapClasspath(Object... classpath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecActionFactory.java

            }
    
            @Override
            public FileCollection getBootstrapClasspath() {
                return delegate.getBootstrapClasspath();
            }
    
            @Override
            public void setBootstrapClasspath(FileCollection classpath) {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public JavaForkOptions bootstrapClasspath(Object... classpath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 10 06:16:11 UTC 2023
    - 24K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

            return forkOptions.getBootstrapClasspath();
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public void setBootstrapClasspath(FileCollection classpath) {
            forkOptions.setBootstrapClasspath(classpath);
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public Test bootstrapClasspath(Object... classpath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  9. 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