Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 105 for getOutputAs (0.28 sec)

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

            javaCompiler.finalizeValueOnRead();
            compileOptions.getIncrementalAfterFailure().convention(true);
            CompilerForkUtils.doNotCacheIfForkingViaExecutable(compileOptions, getOutputs());
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        @Internal("tracked via stableSources")
        public FileTree getSource() {
            return super.getSource();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/internal/DefaultCppTestExecutable.java

            this.outputs = objects.fileCollection();
            this.runTask = objects.property(RunTestExecutable.class);
        }
    
        @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.3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftSharedLibrary.java

            this.runtimeElements = objectFactory.property(Configuration.class);
            this.outputs = objectFactory.fileCollection();
        }
    
        @Override
        public ConfigurableFileCollection getOutputs() {
            return outputs;
        }
    
        @Override
        public RegularFileProperty getLinkFile() {
            return linkFile;
        }
    
        @Override
        public Property<Task> getLinkFileProducer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppStaticLibrary.java

            this.runtimeElements = objectFactory.property(Configuration.class);
            this.outputs = objectFactory.fileCollection();
        }
    
        @Override
        public ConfigurableFileCollection getOutputs() {
            return outputs;
        }
    
        @Override
        public RegularFileProperty getLinkFile() {
            return linkFile;
        }
    
        @Override
        public Property<Task> getLinkFileProducer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftStaticLibrary.java

            this.runtimeElements = objectFactory.property(Configuration.class);
            this.outputs = objectFactory.fileCollection();
        }
    
        @Override
        public ConfigurableFileCollection getOutputs() {
            return outputs;
        }
    
        @Override
        public RegularFileProperty getLinkFile() {
            return linkFile;
        }
    
        @Override
        public Property<Task> getLinkFileProducer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskOptionsGenerator.java

            new BuiltInOptionElement(
                "Causes the task to be re-run even if up-to-date.",
                "rerun",
                task -> task.getOutputs().upToDateWhen(Specs.satisfyNone())
            )
        );
    
        /**
         * Builds a list of implicit built-in options available for every task.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 28 09:20:18 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

          try_update_current_candidate(user);
        }
    
        // Check island data results.
        Block& graph_body = llvm::cast<GraphOp>(graph).GetBody();
        for (Value result : island.getOutputs()) {
          for (Operation* user : result.getUsers()) {
            Operation* def = graph_body.findAncestorOpInBlock(*user);
            DCHECK_NE(def, nullptr);
            try_update_current_candidate(def);
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftExecutable.java

            this.runtimeElementsProperty = objectFactory.property(Configuration.class);
            this.outputs = objectFactory.fileCollection();
        }
    
        @Override
        public ConfigurableFileCollection getOutputs() {
            return outputs;
        }
    
        @Override
        public Property<Task> getExecutableFileProducer() {
            return executableFileProducer;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/plugins/NativeBinariesTestPlugin.java

                InstallExecutable installTask = (InstallExecutable) tasks.getInstall();
                RunTestExecutable runTask = (RunTestExecutable) tasks.getRun();
                runTask.getInputs().files(installTask.getOutputs().getFiles()).withPropertyName("installTask.outputs").withPathSensitivity(PathSensitivity.RELATIVE);
                runTask.setExecutable(installTask.getRunScriptFile().get().getAsFile().getPath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

                this.astTransformationClasspath.from((Callable<FileCollection>) this::getClasspath);
            }
            CompilerForkUtils.doNotCacheIfForkingViaExecutable(compileOptions, getOutputs());
        }
    
        @Override
        @CompileClasspath
        @Incremental
        public FileCollection getClasspath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top