Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 108 for getOutputAs (0.37 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactory.java

            }
    
            // Enabled caching if task type is annotated with @CacheableTask
            if (taskClassInfo.isCacheable()) {
                task.getOutputs().cacheIf("Annotated with @CacheableTask", Specs.SATISFIES_ALL);
            }
            taskClassInfo.getReasonNotToTrackState()
                .ifPresent(task::doNotTrackState);
    
            return task;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 18 14:40:02 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedNodeFixture.java

        }
    
        public String getOutput() {
            List<String> nonEmptyOutputs = filter(outputs, string -> !string.equals(""));
            return join("\n", nonEmptyOutputs);
        }
    
        public List<String> getOutputs() {
            return outputs;
        }
    
        /**
         * Given some expectedText, assert that the output of this fixture contains it.
         *
         * @param expectedText the expected lines of expectedText
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultStaticLibraryBinarySpec.java

            }
    
            @Override
            protected boolean hasOutputs() {
                return hasSources() || !additionalLinkFiles.isEmpty();
            }
    
            @Override
            protected Set<File> getOutputs() {
                Set<File> allFiles = new LinkedHashSet<File>();
                if (hasSources()) {
                    allFiles.add(getStaticLibraryFile());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskPropertyUtils.java

        }
    
        private static void visitRegisteredProperties(TaskInternal task, PropertyVisitor visitor) {
            task.getInputs().visitRegisteredProperties(visitor);
            task.getOutputs().visitRegisteredProperties(visitor);
            ((TaskDestroyablesInternal) task.getDestroyables()).visitRegisteredProperties(visitor);
            ((TaskLocalStateInternal) task.getLocalState()).visitRegisteredProperties(visitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:24 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/changedetection/changes/DefaultTaskExecutionModeResolverTest.groovy

        def taskProperties = Mock(TaskProperties)
        def task = Stub(TaskInternal)
        def upToDateSpec = Mock(AndSpec)
    
        def setup() {
            _ * task.getInputs() >> inputs
            _ * task.getOutputs() >> outputs
            _ * outputs.getUpToDateSpec() >> upToDateSpec
        }
    
        def "untracked"() {
            when:
            def state = repository.getExecutionMode(task, taskProperties)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractReportTask.java

    public abstract class AbstractReportTask extends ConventionTask {
        private File outputFile;
    
        // todo annotate as required
        private Set<Project> projects;
    
        protected AbstractReportTask() {
            getOutputs().upToDateWhen(element -> false);
            projects = new HashSet<>();
            projects.add(getProject());
        }
    
        @Inject
        protected BuildClientMetaData getClientMetaData() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedWorkOutputFixture.java

            List<String> nonEmptyOutputs = filter(outputs, string -> !string.equals(""));
            return join("\n", nonEmptyOutputs);
        }
    
        /**
         * Returns all output entries.
         */
        public List<String> getOutputs() {
            return outputs;
        }
    
        /**
         * Given some expectedText, assert that the output of this fixture contains it.
         *
         * @param expectedText the expected lines of expectedText
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/split_into_island_per_op_pass.cc

      island.getBody().push_back(new Block);
      Block* block = &island.getBody().back();
      OpBuilder island_builder(original_island);
      island_builder.setInsertionPointToEnd(block);
      sub_op.replaceAllUsesWith(island.getOutputs());
      sub_op.moveBefore(block, block->begin());
      island_builder.create<tf_executor::YieldOp>(loc, sub_op.getResults());
      return island;
    }
    
    // Converts a single island into multiple islands (one for each op).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppExecutable.java

            this.runtimeElementsProperty = objectFactory.property(Configuration.class);
            this.outputs = objectFactory.fileCollection();
        }
    
        @Override
        public ConfigurableFileCollection getOutputs() {
            return outputs;
        }
    
        @Override
        public RegularFileProperty getExecutableFile() {
            return executableFile;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

        }
    
        public String getInputsValue() {
            if (inputs == null) {
                return StringUtil.EMPTY;
            }
            return String.join("\n", inputs);
        }
    
        public String[] getOutputs() {
            return outputs;
        }
    
        public String getOutputsValue() {
            if (outputs == null) {
                return StringUtil.EMPTY;
            }
            return String.join("\n", outputs);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top