Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for output_arg (0.17 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftCompiler.java

                    outputFileMap.writeToFile(outputFileMapFile);
    
                    List<String> outputArgs = new ArrayList<>();
                    outputArgs.add("-output-file-map");
                    outputArgs.add(outputFileMapFile.getAbsolutePath());
    
                    List<String> importRootArgs = new ArrayList<>();
                    for (File importRoot : spec.getIncludeRoots()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

        }
    
        public void create(final File outputJar, final Iterable<? extends File> files) {
            LOGGER.info("Generating " + outputJar.getAbsolutePath());
            ProgressLogger progressLogger = progressLoggerFactory.newOperation(RuntimeShadedJarCreator.class);
            progressLogger.setDescription("Generating " + outputJar.getName());
            progressLogger.started();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/ClasspathElementTransformTest.groovy

            }
        }
    
        private JarTestFixture transformJar(TransformFactoryType factory, File originalJar) {
            def outputJar = testDir.file("transformed.jar")
            return new JarTestFixture(transform(factory, originalJar, outputJar), 'UTF-8', null, /* checkManifest */ false)
        }
    
        private TestFile transformDirectory(TransformFactoryType factory, File originalDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_launch_util.cc

            // to be deprecated.
            Tensor* output_tensor;
            TF_RETURN_IF_ERROR(
                ctx->allocate_output(i, tensor_shape, &output_tensor));
            auto output_avt = AsyncValueTensor::FromTensor(output_tensor);
            output_avt->SetBuffer(std::move(executable_outputs[output_num]));
          }
          ++output_num;
        }
      }
    
      // Apply variable updates, if any.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  5. hack/update-codegen.sh

        # The result file, in each pkg, of open-api generation.
        local output_file="${GENERATED_FILE_PREFIX}openapi.go"
    
        local output_dir="pkg/generated/openapi"
        local output_pkg="k8s.io/kubernetes/${output_dir}"
        local known_violations_file="${API_KNOWN_VIOLATIONS_DIR}/violation_exceptions.list"
    
        local report_file="${OUT_DIR}/api_violations.report"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top