Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 103 for commandline (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleScopeServices.java

    import org.gradle.execution.ProjectConfigurer;
    import org.gradle.execution.SelectedTaskExecutionAction;
    import org.gradle.execution.TaskNameResolvingBuildTaskScheduler;
    import org.gradle.execution.commandline.CommandLineTaskConfigurer;
    import org.gradle.execution.commandline.CommandLineTaskParser;
    import org.gradle.execution.plan.LocalTaskNodeExecutor;
    import org.gradle.execution.plan.NodeExecutor;
    import org.gradle.execution.plan.PlanExecutor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/cmd/buildid/buildid.go

    func main() {
    	log.SetPrefix("buildid: ")
    	log.SetFlags(0)
    	telemetry.Start()
    	flag.Usage = usage
    	flag.Parse()
    	telemetry.Inc("buildid/invocations")
    	telemetry.CountFlags("buildid/flag:", *flag.CommandLine)
    	if flag.NArg() != 1 {
    		usage()
    	}
    
    	file := flag.Arg(0)
    	id, err := buildid.ReadFile(file)
    	if err != nil {
    		log.Fatal(err)
    	}
    	if !*wflag {
    		fmt.Printf("%s\n", id)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/preprofile/main.go

    	log.SetFlags(0)
    	log.SetPrefix("preprofile: ")
    	telemetry.Start()
    
    	flag.Usage = usage
    	flag.Parse()
    	telemetry.Inc("preprofile/invocations")
    	telemetry.CountFlags("preprofile/flag:", *flag.CommandLine)
    	if *input == "" {
    		log.Print("Input pprof path required (-i)")
    		usage()
    	}
    
    	if err := preprocess(*input, *output); err != nil {
    		log.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/tfl_quantizer.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <iostream>
    
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/InitLLVM.h"
    #include "llvm/Support/MemoryBuffer.h"
    #include "llvm/Support/PrettyStackTrace.h"
    #include "llvm/Support/raw_ostream.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_quantized_functions.cc

    #include <algorithm>
    #include <map>
    #include <memory>
    #include <string>
    #include <tuple>
    #include <utility>
    
    #include "absl/container/flat_hash_map.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/SourceMgr.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/DialectRegistry.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/init_mlir.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/init_mlir.h"
    
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/PrettyStackTrace.h"
    #include "tensorflow/core/platform/init_main.h"
    
    static llvm::cl::extrahelp FlagSplittingHelp(R"(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 10:03:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.JavaExec.xml

                </tr>
                <tr>
                    <td>ignoreExitValue</td>
                    <td><literal>false</literal></td>
                </tr>
                <tr>
                    <td>commandLine</td>
                    <td/>
                </tr>
                <tr>
                    <td>executionResult</td>
                    <td/>
                </tr>
                <tr>
                    <td>javaLauncher</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.h

    // required by the TensorFlow Graph(Def) to MLIR module conversion. It is only
    // intended to be included by binaries.
    
    #include <string>
    
    #include "llvm/Support/CommandLine.h"
    
    // Please see the implementation file for documentation of these options.
    
    // Import options.
    extern llvm::cl::opt<std::string> input_arrays;
    extern llvm::cl::opt<std::string> input_dtypes;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/optimize.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(OptimizePass)
    
      StringRef getArgument() const final {
        // This is the argument used to refer to the pass in
        // the textual format (on the commandline for example).
        return "quant-optimize";
      }
      StringRef getDescription() const final {
        // This is a brief description of the pass.
        return "Applies optimization after quantization";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskConfigurer.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.commandline;
    
    import org.gradle.api.Task;
    import org.gradle.api.internal.tasks.TaskOptionsGenerator;
    import org.gradle.api.internal.tasks.TaskOptionsGenerator.TaskOptions;
    import org.gradle.api.internal.tasks.options.OptionDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top