Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for printTask (0.56 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/LanguageSourceSetIntegrationTest.groovy

            """.stripIndent()
        }
    
        private String addPrintSourceDirTask() {
            """
                class PrintSourceDirectoryRules extends RuleSource {
                    @Mutate void printTask(ModelMap<Task> tasks, LanguageSourceSet lss) {
                        tasks.create("printSourceDirs") {
                          doLast {
                            println ("source dirs: \${lss.source.getSrcDirs()}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/print.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    class PrintPass : public impl::PrintPassBase<PrintPass> {
     public:
      explicit PrintPass(raw_ostream* os = nullptr);
      PrintPass(const PrintPass& other);
      void runOnOperation() override;
    
     private:
      llvm::sys::SmartMutex<true> mutex_;
      raw_ostream* os_;
    };
    
    PrintPass::PrintPass(raw_ostream* os) {
      if (os) {
        os_ = os;
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 23:15:17 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/go/types/gotype.go

    	parserMode parser.Mode
    )
    
    func initParserMode() {
    	if *allErrors {
    		parserMode |= parser.AllErrors
    	}
    	if *printAST {
    		sequential = true
    	}
    	if *printTrace {
    		parserMode |= parser.Trace
    		sequential = true
    	}
    	if *parseComments && (*printAST || *printTrace) {
    		parserMode |= parser.ParseComments
    	}
    }
    
    const usageString = `usage: gotype [flags] [path ...]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top