Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for getBootClasspath (0.21 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

            if (options.getBootClasspath() != null && !options.getBootClasspath().isEmpty()) {
                // Added so JavaDoc has the same behavior as JavaCompile regarding the bootClasspath
                getProjectLayout().files(options.getBootClasspath()).getAsPath();
            }
    
            if (!isTrue(options.getWindowTitle()) && isTrue(getTitle())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            assertNull(options.getDoclet());
            assertEmpty(options.getDocletpath());
            assertNull(options.getSource());
            assertEmpty(options.getClasspath());
            assertEmpty(options.getBootClasspath());
            assertEmpty(options.getExtDirs());
            assertEquals(options.getOutputLevel(), JavadocOutputLevel.QUIET);
            assertFalse(options.isBreakIterator());
            assertNull(options.getLocale());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/MinimalJavadocOptions.java

        MinimalJavadocOptions classpath(List<File> classpath);
    
        MinimalJavadocOptions classpath(File... classpath);
    
        @Classpath
        List<File> getBootClasspath();
    
        void setBootClasspath(List<File> bootClasspath);
    
        MinimalJavadocOptions bootClasspath(File... bootClasspath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/testFixtures/groovy/org/gradle/workers/fixtures/OptionsVerifier.groovy

                processEnv["${ARGUMENTS}"] = arguments
    
                if (${includeBootstrapClasspath}) {
                    processEnv["${BOOTSTRAP_CLASSPATH}"] = runtimeMxBean.getBootClassPath().replaceAll(Pattern.quote(File.separator),'/')
                }
    
                processEnv["${ENV_VARIABLES}"] = [:]
                System.getenv().each { key, value ->
                    processEnv["${ENV_VARIABLES}"][key] = value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

        @Nullable
        public String getEncoding() {
            return encoding;
        }
    
        public void setEncoding(@Nullable String encoding) {
            this.encoding = encoding;
        }
    
        public String getBootClasspath() {
            return bootClasspath;
        }
    
        public void setBootClasspath(String bootClasspath) {
            this.bootClasspath = bootClasspath;
        }
    
        public String 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)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            }
            if (compileOptions.getEncoding() != null) {
                args.add("-encoding");
                args.add(compileOptions.getEncoding());
            }
            String bootClasspath = compileOptions.getBootClasspath();
            if (bootClasspath != null) { //TODO: move bootclasspath to platform
                args.add("-bootclasspath");
                args.add(bootClasspath);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * See How Classes Are Found. for more details. Separate directories in classpathlist with semicolons (;).
         */
        @Override
        public List<File> getBootClasspath() {
            return bootClasspath.getValue();
        }
    
        @Override
        public void setBootClasspath(List<File> bootClasspath) {
            this.bootClasspath.setValue(bootClasspath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

            setDocletpath(copyOrNull(original.getDocletpath()));
            setSource(original.getSource());
            setClasspath(copyOrNull(original.getClasspath()));
            setBootClasspath(copyOrNull(original.getBootClasspath()));
            setExtDirs(copyOrNull(original.getExtDirs()));
            setOutputLevel(original.getOutputLevel());
            setBreakIterator(original.isBreakIterator());
            setLocale(original.getLocale());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.external.javadoc.CoreJavadocOptions.getBootClasspath()> does not have raw return type assignable to org.gradle.api.provider.Property in (CoreJavadocOptions.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