Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for getCompileOptions (0.23 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

            spec.setGroovyCompileOptions(new MinimalGroovyCompileOptions(groovyCompileOptions));
            spec.getCompileOptions().setSupportsCompilerApi(true);
            if (getOptions().isIncremental()) {
                validateIncrementalCompilationOptions(sourceRoots, spec.annotationProcessingConfigured());
                spec.getCompileOptions().setPreviousCompilationDataFile(getPreviousCompilationData());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CleaningJavaCompiler.java

        }
    
        @Override
        public WorkResult execute(T spec) {
            ImmutableSet.Builder<File> outputDirs = ImmutableSet.builderWithExpectedSize(3);
            MinimalJavaCompileOptions compileOptions = spec.getCompileOptions();
            addDirectoryIfNotNull(outputDirs, spec.getDestinationDir());
            addDirectoryIfNotNull(outputDirs, compileOptions.getAnnotationProcessorGeneratedSourcesDirectory());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

    namespace {
    using XlaDeviceCompiler =
        DeviceCompiler<xla::LocalExecutable, xla::LocalClient>;
    using PjRtDeviceCompiler =
        DeviceCompiler<xla::PjRtLoadedExecutable, xla::PjRtClient>;
    
    XlaCompiler::CompileOptions GetCompileOptions(bool for_pjrt = false) {
      XlaCompiler::CompileOptions compile_options;
      compile_options.is_entry_computation = true;
      // Optimization: where possible, have the computation return a naked array
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/DefaultGroovyJavaJointCompileSpec.java

        public void setGroovyClasspath(List<File> groovyClasspath) {
            this.groovyClasspath = groovyClasspath;
        }
    
        @Override
        public boolean incrementalCompilationEnabled() {
            return getCompileOptions().getPreviousCompilationDataFile() != null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompiler.java

            Map<String, AnnotationProcessorDeclaration> declarations = annotationProcessorDetector.detectProcessors(spec.getAnnotationProcessorPath());
            List<String> compilerArgs = spec.getCompileOptions().getCompilerArgs();
            int processorIndex = compilerArgs.lastIndexOf("-processor");
            if (processorIndex == -1) {
                return Sets.newLinkedHashSet(declarations.values());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/ModuleApplicationNameWritingCompiler.java

            this.delegate = delegate;
        }
    
        @Override
        public WorkResult execute(T spec) {
            WorkResult result = delegate.execute(spec);
            String mainClass = spec.getCompileOptions().getJavaModuleMainClass();
            if (mainClass != null) {
                File moduleInfo = new File(spec.getDestinationDir(), "module-info.class");
                if (moduleInfo.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

                                sourcepathBuilder.add(stubDir);
                                if (spec.getCompileOptions().getSourcepath() != null) {
                                    sourcepathBuilder.addAll(spec.getCompileOptions().getSourcepath());
                                }
                                spec.getCompileOptions().setSourcepath(sourcepathBuilder.build());
                            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpec.java

        private List<File> sourceRoots;
        private Set<String> classesToCompile = Collections.emptySet();
        private File backupDestinationDir;
    
        @Override
        public MinimalJavaCompileOptions getCompileOptions() {
            return compileOptions;
        }
    
        @Nullable
        @Override
        public File getClassBackupDir() {
            return backupDestinationDir;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationClassBackupService.java

            this.classesToCompile = spec.getClassesToCompile();
            this.destinationDir = spec.getDestinationDir();
            this.headerOutputDir = spec.getCompileOptions().getHeaderOutputDirectory();
            this.classBackupDir = spec.getClassBackupDir();
            this.shouldBackupFiles = classBackupDir != null;
            this.result = result;
            this.uniqueIndex = new AtomicLong();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/SelectiveCompiler.java

                return rebuildAllCompiler.execute(spec);
            }
            File previousCompilationDataFile = Objects.requireNonNull(spec.getCompileOptions().getPreviousCompilationDataFile());
            if (!previousCompilationDataFile.exists()) {
                LOG.info("Full recompilation is required because no previous compilation result is available.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top