Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for output_arg (0.23 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/Assembler.java

        }
    
        @Override
        protected Iterable<String> buildPerFileArgs(List<String> genericArgs, List<String> sourceArgs, List<String> outputArgs, List<String> pchArgs) {
            if (pchArgs != null && !pchArgs.isEmpty()) {
                throw new UnsupportedOperationException("Precompiled header arguments cannot be specified for a Assembler compiler.");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/AssemblerTest.groovy

            given:
            def genericArgs = [ '/c' ]
            def sourceArgs = [ 'path/to/source.s' ]
            def outputArgs = [ 'path/to/output.o' ]
            def compiler = getCompiler()
            expect:
            compiler.buildPerFileArgs(genericArgs, sourceArgs, outputArgs, []) as List == [ 'path/to/output.o', '/c', 'path/to/source.s' ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/Assembler.java

            if (pchArgs != null && !pchArgs.isEmpty()) {
                throw new UnsupportedOperationException("Precompiled header arguments cannot be specified for an Assembler compiler.");
            }
            return super.buildPerFileArgs(genericArgs, sourceArgs, outputArgs, pchArgs);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/model/op_spec.h

      const std::vector<ArgSpec>& Outputs() const { return output_args_; }
      const std::vector<AttrSpec>& Attributes() const { return argument_attrs_; }
    
     private:
      explicit OpSpec(const OpDef& op_def, const ApiDef& api_def);
    
     private:
      string name_;
      string summary_;
      string description_;
      std::vector<ArgSpec> input_args_;
      std::vector<ArgSpec> output_args_;
      std::vector<AttrSpec> argument_attrs_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. 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)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsResourceCompiler.java

        }
    
        @Override
        protected Iterable<String> buildPerFileArgs(List<String> genericArgs, List<String> sourceArgs, List<String> outputArgs, List<String> pchArgs) {
            if (pchArgs != null && !pchArgs.isEmpty()) {
                throw new UnsupportedOperationException("Precompiled header arguments cannot be specified for a Windows Resource compiler.");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. 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)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsResourceCompilerTest.groovy

            given:
            def genericArgs = [ '/nologo' ]
            def sourceArgs = [ 'path/to/source.rc' ]
            def outputArgs = [ 'path/to/output.res' ]
            def compiler = getCompiler()
            expect:
            compiler.buildPerFileArgs(genericArgs, sourceArgs, outputArgs, []) as List == [ '/nologo', 'path/to/output.res', 'path/to/source.rc' ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/build.gradle.kts

    val copyGr8OutputJarAsGradleWrapperJar by tasks.registering(Copy::class) {
        from(tasks.named<Gr8Task>("gr8R8Jar").flatMap { it.outputJar() })
        into(layout.buildDirectory.dir("libs"))
    }
    
    tasks.jar {
        from(tasks.named<Gr8Task>("gr8R8Jar").flatMap { it.outputJar() })
        dependsOn(copyGr8OutputJarAsGradleWrapperJar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          // Add derived "result_segment_sizes" attr to the created operation.
          // TODO(b/146937733): Don't use <void> here.
          set_segment_sizes_attr(output_ranges, node.op_def().output_arg(),
                                 mlir::OpTrait::AttrSizedResultSegments<
                                     void>::getResultSegmentSizeAttr());
        }
      }
    
      if (VLOG_IS_ON(1)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top