当前位置: 首页>>代码示例>>Java>>正文


Java FileCollection.isEmpty方法代码示例

本文整理汇总了Java中org.gradle.api.file.FileCollection.isEmpty方法的典型用法代码示例。如果您正苦于以下问题:Java FileCollection.isEmpty方法的具体用法?Java FileCollection.isEmpty怎么用?Java FileCollection.isEmpty使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.gradle.api.file.FileCollection的用法示例。


在下文中一共展示了FileCollection.isEmpty方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getManagedJvmArgs

import org.gradle.api.file.FileCollection; //导入方法依赖的package包/类
/**
 * @return the list of jvm args we manage explicitly, for example, max heaps size or file encoding.
 * The result is a subset of options returned by {@link #getAllImmutableJvmArgs()}
 */
public List<String> getManagedJvmArgs() {
    List<String> args = new ArrayList<String>();
    if (minHeapSize != null) {
        args.add("-Xms" + minHeapSize);
    }
    if (maxHeapSize != null) {
        args.add("-Xmx" + maxHeapSize);
    }
    FileCollection bootstrapClasspath = getBootstrapClasspath();
    if (!bootstrapClasspath.isEmpty()) {
        args.add("-Xbootclasspath:" + bootstrapClasspath.getAsPath());
    }

    // These are implemented as a system property, but don't really function like one
    // So we include it in this “no system property” set.
    formatSystemProperties(immutableSystemProperties, args);

    if (assertionsEnabled) {
        args.add("-ea");
    }
    if (debug) {
        args.add("-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005");
    }
    return args;
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:30,代码来源:JvmOptions.java

示例2: isEmpty

import org.gradle.api.file.FileCollection; //导入方法依赖的package包/类
@Override
public boolean isEmpty() {
    for (FileCollection collection : getSourceCollections()) {
        if (!collection.isEmpty()) {
            return false;
        }
    }
    return true;
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:10,代码来源:CompositeFileCollection.java

示例3: FindBugsSpecBuilder

import org.gradle.api.file.FileCollection; //导入方法依赖的package包/类
public FindBugsSpecBuilder(FileCollection classes) {
    if(classes == null || classes.isEmpty()){
        throw new InvalidUserDataException("No classes configured for FindBugs analysis.");
    }
    this.classes = classes;
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:7,代码来源:FindBugsSpecBuilder.java

示例4: has

import org.gradle.api.file.FileCollection; //导入方法依赖的package包/类
private boolean has(FileCollection fileCollection) {
    return fileCollection != null && !fileCollection.isEmpty();
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:4,代码来源:FindBugsSpecBuilder.java

示例5: addMainOptions

import org.gradle.api.file.FileCollection; //导入方法依赖的package包/类
private void addMainOptions() {
    if (!includeMainOptions) {
        return;
    }

    CompileOptions compileOptions = spec.getCompileOptions();
    List<String> compilerArgs = compileOptions.getCompilerArgs();
    if (!releaseOptionIsSet(compilerArgs)) {
        String sourceCompatibility = spec.getSourceCompatibility();
        if (sourceCompatibility != null) {
            args.add("-source");
            args.add(sourceCompatibility);
        }
        String targetCompatibility = spec.getTargetCompatibility();
        if (targetCompatibility != null) {
            args.add("-target");
            args.add(targetCompatibility);
        }
    }
    File destinationDir = spec.getDestinationDir();
    if (destinationDir != null) {
        args.add("-d");
        args.add(destinationDir.getPath());
    }
    if (compileOptions.isVerbose()) {
        args.add("-verbose");
    }
    if (compileOptions.isDeprecation()) {
        args.add("-deprecation");
    }
    if (!compileOptions.isWarnings()) {
        args.add("-nowarn");
    }
    if (compileOptions.isDebug()) {
        if (compileOptions.getDebugOptions().getDebugLevel() != null) {
            args.add("-g:" + compileOptions.getDebugOptions().getDebugLevel().trim());
        } else {
            args.add("-g");
        }
    } else {
        args.add("-g:none");
    }
    if (compileOptions.getEncoding() != null) {
        args.add("-encoding");
        args.add(compileOptions.getEncoding());
    }
    if (compileOptions.getBootClasspath() != null) { //TODO: move bootclasspath to platform
        args.add("-bootclasspath");
        args.add(compileOptions.getBootClasspath());
    }
    if (compileOptions.getExtensionDirs() != null) {
        args.add("-extdirs");
        args.add(compileOptions.getExtensionDirs());
    }
    FileCollection sourcepath = compileOptions.getSourcepath();
    Iterable<File> classpath = spec.getClasspath();
    if ((sourcepath != null && !sourcepath.isEmpty()) || (includeClasspath && (classpath != null && classpath.iterator().hasNext()))) {
        args.add("-sourcepath");
        args.add(sourcepath == null ? emptyFolder(spec.getTempDir()) : sourcepath.getAsPath());
    }
    if (compilerArgs != null) {
        args.addAll(compilerArgs);
    }
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:65,代码来源:JavaCompilerArgumentsBuilder.java

示例6: execute

import org.gradle.api.file.FileCollection; //导入方法依赖的package包/类
public void execute(TaskInternal task, TaskStateInternal state, TaskExecutionContext context) {
    FileCollection sourceFiles = task.getInputs().getSourceFiles();
    if (task.getInputs().getHasSourceFiles() && sourceFiles.isEmpty()) {
        TaskArtifactState taskArtifactState = context.getTaskArtifactState();
        FileCollection outputFiles = taskArtifactState.getExecutionHistory().getOutputFiles();
        if (outputFiles == null) {
            state.setOutcome(TaskExecutionOutcome.UP_TO_DATE);
            LOGGER.info("Skipping {} as it has no source files and no history of previous output files.", task);
        } else if (outputFiles.isEmpty()) {
            state.setOutcome(TaskExecutionOutcome.UP_TO_DATE);
            LOGGER.info("Skipping {} as it has no source files and no previous output files.", task);
        } else {
            Set<File> outputFileSet = outputFiles.getFiles();
            boolean deletedFiles = false;
            boolean debugEnabled = LOGGER.isDebugEnabled();
            for (File file : outputFileSet) {
                if (file.isFile()) {
                    if (file.delete()) {
                        if (debugEnabled) {
                            LOGGER.debug("Deleted stale output file '{}'.", file.getAbsolutePath());
                        }
                    } else {
                        state.setOutcome(new GradleException(String.format("Could not delete file: '%s'.", file.getAbsolutePath())));
                        return;
                    }
                    deletedFiles = true;
                }
            }
            if (deletedFiles) {
                LOGGER.info("Cleaned previous output of {} as it has no source files.", task);
                state.setOutcome(TaskExecutionOutcome.EXECUTED);
            } else {
                state.setOutcome(TaskExecutionOutcome.UP_TO_DATE);
            }
        }
        taskInputsListener.onExecute(task, Cast.cast(FileCollectionInternal.class, sourceFiles));
        return;
    } else {
        taskInputsListener.onExecute(task, Cast.cast(FileCollectionInternal.class, task.getInputs().getFiles()));
    }
    executer.execute(task, state, context);
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:43,代码来源:SkipEmptySourceFilesTaskExecuter.java


注:本文中的org.gradle.api.file.FileCollection.isEmpty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。